Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
169930 | A班匡嘉阳 | 偶数3的个数 | C++ | 解答错误 | 90 | 0 MS | 256 KB | 334 | 2024-08-20 20:22:39 |
#include <bits/stdc++.h> using namespace std; const int maxn = 1005; long long n,d = 10,x = 9,cnt,a[maxn],i,j; int main(){ cin >> n; if(n == 1) cout << 9 << endl; a[1] = 9; for(i = 2;i <= n;i++){ a[i] = (8 * x + d - x); x += a[i]; d *= 10; } cout << a[n]; return 0; }