Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
46949 老方 回文数 C++ 通过 0 MS 248 KB 325 2024-05-07 20:43:59

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b,cnt=0; cin>>a>>b; for(int i=a;i<=b;i++){ string s=to_string(i); bool flag=true,f2=false; for(int j=0;j<s.size();j++){ if(s[j]!=s[s.size()-1-j])flag=false; if(s[j]=='7')f2=true; } if(flag&&f2)cnt++; } cout<<cnt; return 0; }


测评信息: