Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19617 张熙媛 奇怪的车牌号 C++ 通过 100 0 MS 248 KB 500 2021-05-17 20:59:10

Tests(1/1):


#include<bits/stdc++.h> using namespace std; string s1[7]={"0123","1234","2345","3456","4567","5678","6789"}; int ans; int compute(string str){ int ans=0; int len=str.length(); for(int i=0;i<len;i++){ ans+=str[i]-'0'; } return ans; } int isPf(int num){ int n=sqrt(num); return n*n==num; } int main(){ for(int i=0;i<=6;i++){ for(int j=0;j<=6;j++){ if(isPf(compute(s1[i]+s1[j]))){ //cout<<s1[i]+s1[j]<<endl; ans++; } } } cout<<ans; return 0; }


测评信息: