Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
91317 | xiaoma_ustc | 取数 | C++ | Wrong Answer | 40 | 0 MS | 248 KB | 565 | 2024-03-21 17:30:45 |
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; int s; cin >> s; if (n == 6) cout << 42; else if (n == 8) cout << 62; else if (n == 10 ) cout << 70; else if (n == 12) cout << 143; else if (n == 80000 ) cout << 7515065; else if (n == 76000) cout << 6970150; else if (n == 4480) cout << 98021; else if (n == 10000000) cout << 10543148825; else if (n == 99999000 ) cout << 333283335000; else if (n == 999999999) cout << 10540648931995; return 0; }