Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168919 | A班 赵正帆 | 偶数3的个数 | C++ | 运行超时 | 60 | 1000 MS | 268 KB | 269 | 2024-08-20 14:45:12 |
#include <bits/stdc++.h> using namespace std; int main(){ int n,j=0,cnt=0,s=0; cin >> n; for(long long i=pow(10,n-1);i<=pow(10,n)-1;i++){ cnt=0; j=i; while(j>0){ if(j%10==3)cnt++; j=j/10; } if(cnt%2==0)s++; } cout << s; return 0; }