Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
169010 | 简晨希1314 | 偶数3的个数 | C++ | 运行超时 | 60 | 1000 MS | 268 KB | 271 | 2024-08-20 15:10:17 |
#include<bits/stdc++.h> using namespace std; int main() { int n,j=0,o=0,s=0; cin>>n; for(long long i=pow(10,n-1);i<=pow(10,n)-1;i++) { //cout<<i<<endl; o=0; j=i; while(j>0) { if(j%10==3) o++; j=j/10; } if(o%2==0) s++; } cout<<s; }