結果
問題 | No.826 連絡網 |
ユーザー | _____TAB_____ |
提出日時 | 2019-05-03 21:56:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 527 bytes |
コンパイル時間 | 918 ms |
コンパイル使用メモリ | 77,284 KB |
実行使用メモリ | 7,164 KB |
最終ジャッジ日時 | 2024-06-10 06:37:16 |
合計ジャッジ時間 | 3,554 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 8 ms
6,944 KB |
testcase_16 | AC | 61 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 186 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 46 ms
6,944 KB |
testcase_23 | AC | 65 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | AC | 242 ms
7,084 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 58 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int minimum_prime_factor(int x){ for(int i = 2; i*i <= x; ++i){ if(x%i) continue; return i; } return x; } int main(){ int N, P; cin >> N >> P; if(P == 1){ cout << 1 << endl; return 0; } int ans = 0; vector<int> D(N); for(int i = 0; i < N; ++i){ D[i] = minimum_prime_factor(i+1); } for(int i = 1; i < N; ++i){ if(D[i] == D[P-1] or D[i]*D[P-1] <= N){ ++ans; } } cout << ans << endl; }