Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
42150 徐睿杨 幸运数字 C++ 通过 100 9 MS 252 KB 315 2022-06-24 15:37:04

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int check(int i){ if(i%4==0 or i%7==0){ return 1; } while(i!=0){ if(i%100==44 or i%100==77){ return 1; } i/=10; } return 0; } int main(){ int a,ans=0; cin>>a; for(int i=1;i<=a;i++){ ans+=check(i); } cout<<ans; return 0; }


测评信息: