Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
27310 张浩然 数1的个数 C++ 通过 100 0 MS 256 KB 203 2021-12-11 15:17:38

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main(){ int n,ans=0,t; cin>>n; for(int i=1;i<=n;i++){ t=i; while(t){ if(t%10==1) ans++; t/=10; } } cout<<ans; return 0; }


测评信息: