結果
問題 | No.826 連絡網 |
ユーザー | ああいい |
提出日時 | 2022-05-29 18:13:49 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 474 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 354,280 KB |
最終ジャッジ日時 | 2024-09-21 00:26:41 |
合計ジャッジ時間 | 4,847 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,984 KB |
testcase_01 | AC | 39 ms
51,952 KB |
testcase_02 | AC | 46 ms
61,056 KB |
testcase_03 | AC | 64 ms
69,504 KB |
testcase_04 | AC | 64 ms
70,656 KB |
testcase_05 | AC | 62 ms
68,608 KB |
testcase_06 | AC | 62 ms
68,096 KB |
testcase_07 | AC | 66 ms
70,016 KB |
testcase_08 | AC | 66 ms
68,608 KB |
testcase_09 | AC | 64 ms
69,760 KB |
testcase_10 | AC | 57 ms
65,536 KB |
testcase_11 | AC | 60 ms
68,224 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
N,P = map(int,input().split()) div = [[] for _ in range(N + 1)] for i in range(2,N): for j in range(2 * i,N + 1,i): div[j].append(i) ans = 0 stack = [P] memo = [0] * (N + 1) memo[P] = 1 while stack: now = stack.pop() ans += 1 for d in div[now]: if memo[d] == 0: stack.append(d) memo[d] = 1 for j in range(2 * now,N + 1,now): if memo[j] == 0: memo[j] = 1 stack.append(j) print(ans)