結果
問題 | No.843 Triple Primes |
ユーザー | 👑 CleyL |
提出日時 | 2019-06-28 22:25:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 751 bytes |
コンパイル時間 | 538 ms |
コンパイル使用メモリ | 58,972 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 04:53:57 |
合計ジャッジ時間 | 1,875 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
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 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 4 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 4 ms
5,376 KB |
testcase_32 | AC | 4 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 4 ms
5,376 KB |
testcase_41 | AC | 4 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
ソースコード
#include <iostream> #include <cmath> using namespace std; bool prime[500001]; void prime_found(){ prime[0] = true; prime[1] = true; for(int i = 2; 500001 > i; i++){ if(prime[i] == true)continue; for(int j = i+i; 500001 > j; j+=i){ prime[j] = true; } } } int main(){ prime_found(); int n;cin>>n; int ret = 0; for(int i = 2; n >= i; i++){//i == r; //p+q==i^2 if(i==46349)cout << "A" << endl; if(prime[i])continue; if(i%2==0){ for(int j = 2; i >= j && n >= j; j++){ if((!prime[j])&&(!prime[i*i-j])){ if(j==i*i-j)ret++; else ret += 2; }; } }else{ if((long long)i*i-2 > n)continue; if(!prime[i*i-2])ret+=2; } } cout << ret << endl; }