結果
問題 | No.12 限定された素数 |
ユーザー | momoyuu |
提出日時 | 2023-03-15 22:32:45 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,532 bytes |
コンパイル時間 | 2,856 ms |
コンパイル使用メモリ | 247,916 KB |
実行使用メモリ | 22,936 KB |
最終ジャッジ日時 | 2024-09-18 08:56:28 |
合計ジャッジ時間 | 6,468 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
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 | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int> a(n); for(int i = 0;i<n;i++) cin>>a[i]; vector<int> cnt(10,-1); for(int i = 0;i<n;i++) cnt[a[i]]=0; int R = 5e6; cout<<R<<endl; int L = 1; vector<int> p(R+1,-1); p[0] = 1; p[1] = 1; for(int i = 2;i<=R;i++){ if(p[i]==1) continue; p[i] = 0; for(int j = i + i;j<=R;j+=i)p[j]=1; } int ans = -1; int cc = 0; int l = 1,r = 1; while(l<=R&&r<=R){ //cout<<l<<" "<<r<<endl; if(p[r]){ r++; continue; } //cout<<r<<endl; bool q = true; int m = r; while(m){ int now = m % 10; m /= 10; if(cnt[now]==-1) q = false; else cnt[now]++; } if(q){ cc++; r++; for(int i = 0;i<n;i++) cnt[a[i]]=0; continue; } if(cc==0){ l = r = r + 1; for(int i = 0;i<n;i++) cnt[a[i]] = 0; continue; } cc = 0; int now = r - 1 - l; q = true; for(int i = 0;i<n;i++){ if(cnt[a[i]]==0) q = false; cnt[a[i]] = 0; } if(q) ans = max(ans,now); //cout<<ans<<" "<<l<<" "<<r<<endl; l = r = r + 1; } bool q = true; for(int i = 0;i<n;i++){ if(cnt[a[i]] == 0) q = false; } if(q&&cc) ans = max(ans,R-l); cout<<ans<<endl; }