結果

問題 No.826 連絡網
ユーザー hedwig100hedwig100
提出日時 2020-04-20 14:42:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 771 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 243,448 KB
最終ジャッジ日時 2024-10-06 08:50:27
合計ジャッジ時間 18,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 35 ms
12,032 KB
testcase_04 AC 34 ms
12,544 KB
testcase_05 AC 28 ms
11,392 KB
testcase_06 AC 29 ms
11,264 KB
testcase_07 AC 35 ms
12,288 KB
testcase_08 AC 30 ms
11,264 KB
testcase_09 AC 35 ms
12,672 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 31 ms
11,904 KB
testcase_12 AC 1,488 ms
178,432 KB
testcase_13 AC 465 ms
76,800 KB
testcase_14 AC 1,040 ms
134,792 KB
testcase_15 AC 100 ms
24,832 KB
testcase_16 AC 654 ms
93,312 KB
testcase_17 AC 510 ms
76,416 KB
testcase_18 AC 368 ms
61,696 KB
testcase_19 AC 1,788 ms
204,892 KB
testcase_20 AC 1,706 ms
203,012 KB
testcase_21 AC 40 ms
13,056 KB
testcase_22 AC 555 ms
76,928 KB
testcase_23 AC 714 ms
96,768 KB
testcase_24 AC 273 ms
47,488 KB
testcase_25 TLE -
testcase_26 AC 370 ms
55,296 KB
testcase_27 AC 1,612 ms
184,704 KB
testcase_28 AC 1,151 ms
143,104 KB
testcase_29 AC 493 ms
75,648 KB
testcase_30 TLE -
testcase_31 AC 602 ms
89,728 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