結果

問題 No.826 連絡網
ユーザー hedwig100hedwig100
提出日時 2020-04-20 14:43:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,483 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 261,108 KB
最終ジャッジ日時 2024-10-06 08:50:59
合計ジャッジ時間 14,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 50 ms
53,888 KB
testcase_02 AC 58 ms
60,416 KB
testcase_03 AC 69 ms
67,584 KB
testcase_04 AC 70 ms
68,608 KB
testcase_05 AC 64 ms
65,408 KB
testcase_06 AC 65 ms
65,664 KB
testcase_07 AC 75 ms
68,096 KB
testcase_08 AC 65 ms
66,176 KB
testcase_09 AC 70 ms
68,864 KB
testcase_10 AC 64 ms
64,512 KB
testcase_11 AC 69 ms
67,200 KB
testcase_12 AC 990 ms
222,752 KB
testcase_13 AC 364 ms
132,736 KB
testcase_14 AC 764 ms
176,336 KB
testcase_15 AC 121 ms
86,656 KB
testcase_16 AC 507 ms
144,836 KB
testcase_17 AC 387 ms
134,016 KB
testcase_18 AC 308 ms
118,016 KB
testcase_19 AC 1,177 ms
239,924 KB
testcase_20 AC 1,039 ms
247,488 KB
testcase_21 AC 73 ms
70,040 KB
testcase_22 AC 420 ms
130,564 KB
testcase_23 AC 516 ms
149,352 KB
testcase_24 AC 240 ms
105,716 KB
testcase_25 AC 1,370 ms
261,080 KB
testcase_26 AC 281 ms
112,976 KB
testcase_27 AC 1,004 ms
225,116 KB
testcase_28 AC 844 ms
186,540 KB
testcase_29 AC 385 ms
129,024 KB
testcase_30 AC 1,483 ms
261,108 KB
testcase_31 AC 495 ms
141,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  collections import deque

def main():
    n, P = map(int,input().split())
    G = [[] for _ in range(n + 1)]
    primes = [1] * (n + 1)
    for p in range(2,n + 1):
        if primes[p]:
            for i in range(2 * p,n + 1,p):
                primes[i] = 0
                G[i].append(p)
                G[p].append(i)
    
    stack = []
    stack.append(P)
    visited = [0] * (n + 1)
    visited[P] = 1
    while stack:
        p = stack.pop()
        for v in G[p]:
            if visited[v]:
                continue
            else:
                visited[v] = 1
                stack.append(v)
    
    print(sum(visited))

if __name__ == '__main__':
    main()
0