結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | chocorusk |
提出日時 | 2018-12-22 00:25:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,187 bytes |
コンパイル時間 | 822 ms |
コンパイル使用メモリ | 98,336 KB |
実行使用メモリ | 13,916 KB |
最終ジャッジ日時 | 2024-09-25 09:47:52 |
合計ジャッジ時間 | 2,419 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 47 ms
13,024 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 48 ms
13,400 KB |
testcase_05 | AC | 47 ms
12,124 KB |
testcase_06 | AC | 46 ms
12,636 KB |
testcase_07 | AC | 47 ms
13,664 KB |
testcase_08 | AC | 47 ms
13,660 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> using namespace std; typedef long long int ll; typedef pair<int, int> P; const int MAX=5000000; vector<ll> prime; bool isprime[MAX]; void sieve(){ for(ll i=3; i<MAX; i+=2){ isprime[i]=1; } isprime[2]=1; prime.push_back(2); for(ll i=3; i<MAX; i++){ if(isprime[i]){ prime.push_back(i); for(ll j=2*i; j<MAX; j+=i){ isprime[j]=0; } } } return; } int main() { sieve(); int n; cin>>n; ll a[9]; for(int i=0; i<n; i++){ cin>>a[i]; } ll ans=-1; while(1){ ll p10=1, p=0; for(int i=0; i<n; i++){ p+=(p10*a[i]); if(a[i]>=10) p10*=100; else p10*=10; } if(p<MAX){ if(isprime[p]) ans=max(ans, p); }else{ for(int i=0; prime[i]*prime[i]<=p; i++){ if(p%prime[i]==0){ break; } } ans=max(ans, p); } if(!next_permutation(a, a+n)) break; } cout<<ans<<endl; return 0; }