結果
問題 | No.407 鴨等素数間隔列の数え上げ |
ユーザー | Naoyk1212 |
提出日時 | 2016-08-05 23:35:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 482 bytes |
コンパイル時間 | 2,151 ms |
コンパイル使用メモリ | 157,688 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-07 04:26:13 |
合計ジャッジ時間 | 6,246 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; bool isPrime(long long a){ if(a < 2) return false; long i; for(i = 2; i * i <= a; i++){ if(a % i == 0) return false; } return true; } int main(){ long long n, l; cin >> n >> l; int maxspace = l / (n - 1); long long count = 0; for(int i = 0; i < n; i++){ for(int j = 2; j <= maxspace; j++){ if(isPrime(j) == false) continue; if(i + j * (n - 1) <= l) count++; } } cout << count << endl; }