結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | Shuz* |
提出日時 | 2018-06-22 07:55:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 899 bytes |
コンパイル時間 | 1,189 ms |
コンパイル使用メモリ | 159,200 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-30 17:53:33 |
合計ジャッジ時間 | 9,935 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; bool IsPrime(long long num){ if (num < 2) return false; else if (num == 2) return true; else if (num % 2 == 0) return false; double sqrtNum = sqrt(num); for (int i = 3; i <= sqrtNum; i += 2){ if (num % i == 0){ return false;}} return true;} int main(){ long long n,i,p=1,ans,j,k,l; cin>>n; int a[n]; int t[3*n]; t[0]=1; for(i=1;i-3*n;++i)t[i]=t[i-1]*10; for(i=0;i-n;++i)cin>>a[i],p*=2; long long s[10000]={},m=0; for(i=0;i-p;++i){ k=i; ans=a[0]; l=a[0]>9?2:1; for(j=1;j-n;++j){ l+=a[j]>9?2:1; if(k%2)ans+=a[j]*t[l]; else{ans*=a[j]>9?100:10;ans+=a[j];} k/=2;} if(IsPrime(ans))s[m++]=ans;} int max=0; for(i=0;i-10000;++i)max=max>s[i]?max:s[i]; cout<<max<<"\n"; }