結果
問題 | No.12 限定された素数 |
ユーザー | yaoshimax |
提出日時 | 2015-02-09 22:30:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,500 bytes |
コンパイル時間 | 921 ms |
コンパイル使用メモリ | 95,792 KB |
実行使用メモリ | 10,204 KB |
最終ジャッジ日時 | 2024-06-23 16:48:35 |
合計ジャッジ時間 | 3,508 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
9,944 KB |
testcase_01 | AC | 64 ms
9,944 KB |
testcase_02 | AC | 54 ms
9,948 KB |
testcase_03 | WA | - |
testcase_04 | AC | 57 ms
10,164 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 64 ms
10,024 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 51 ms
10,072 KB |
testcase_18 | AC | 48 ms
10,068 KB |
testcase_19 | AC | 47 ms
9,948 KB |
testcase_20 | AC | 53 ms
10,072 KB |
testcase_21 | WA | - |
testcase_22 | AC | 53 ms
9,944 KB |
testcase_23 | AC | 53 ms
10,072 KB |
testcase_24 | AC | 52 ms
10,044 KB |
testcase_25 | WA | - |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <cstring> using namespace std; bool isPrime[5000001]; int main(){ vector<int> primes; primes.push_back(0); memset(isPrime,true,sizeof(isPrime)); for( int i = 2 ; i < 5000001; i++ ){ if(isPrime[i]){ primes.push_back(i); for( int j = i+i; j < 5000001;j+=i){ isPrime[j]=false; } } } int N; cin >> N; bool isOK[10]; memset(isOK,false,sizeof(isOK)); for( int i = 0 ; i < N ; i++){ int a; cin >> a; isOK[a]=true; } primes.push_back(5000001); int ans = -1; for(int i = 1; i+1 < (int)primes.size(); i++ ){ int p = primes[i]; set<int> S; bool ok = true; while(p!=0){ if( isOK[p%10] == false ){ ok=false; break; } S.insert(p%10); p/=10; } if( !ok ) continue; int j; for( j = i+1 ; j+1 < (int) primes.size(); j++ ){ int p = primes[j]; bool ok2 = true; while(p!=0){ if( isOK[p%10]==false){ ok2=false; break; } p/=10; } if( !ok2 ) break; } if( S.size() == N ){ ans = max(ans,primes[j]-1-(primes[i-1]+1)); } i=j; } cout << ans; return 0; }