Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
91318 | xiaoma_ustc | 取数 | C++ | Wrong Answer | 50 | 0 MS | 252 KB | 558 | 2024-03-21 17:31:05 |
#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 == 15 ) cout << 167; 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; }