結果

問題 No.2664 Prime Sum
ユーザー minimumminimum
提出日時 2024-03-08 21:29:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2024-09-29 18:58:31
合計ジャッジ時間 3,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,248 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 43 ms
54,784 KB
testcase_04 AC 40 ms
54,016 KB
testcase_05 AC 56 ms
64,256 KB
testcase_06 AC 54 ms
62,976 KB
testcase_07 AC 45 ms
55,296 KB
testcase_08 AC 49 ms
57,088 KB
testcase_09 AC 60 ms
63,744 KB
testcase_10 AC 48 ms
56,960 KB
testcase_11 AC 40 ms
53,888 KB
testcase_12 AC 44 ms
56,192 KB
testcase_13 AC 51 ms
64,256 KB
testcase_14 AC 65 ms
70,912 KB
testcase_15 AC 67 ms
72,192 KB
testcase_16 AC 66 ms
71,040 KB
testcase_17 WA -
testcase_18 AC 54 ms
64,768 KB
testcase_19 AC 55 ms
65,536 KB
testcase_20 AC 66 ms
71,040 KB
testcase_21 AC 64 ms
70,784 KB
testcase_22 AC 52 ms
64,128 KB
testcase_23 AC 69 ms
71,424 KB
testcase_24 AC 65 ms
71,936 KB
testcase_25 AC 64 ms
70,784 KB
testcase_26 AC 40 ms
54,144 KB
testcase_27 AC 42 ms
55,168 KB
testcase_28 AC 40 ms
53,632 KB
testcase_29 AC 39 ms
54,272 KB
testcase_30 AC 43 ms
54,144 KB
testcase_31 AC 42 ms
54,400 KB
testcase_32 AC 46 ms
54,528 KB
testcase_33 AC 45 ms
54,912 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


N, M = map(int, input().split())
edges = [[] for _ in range(N)]

for _ in range(M):
    a, b = map(lambda x: x - 1, map(int, input().split()))
    edges[a].append(b)
    edges[b].append(a)

dist = [-1] * N
dist[0] = 0
dq = deque()
dq.append(0)

while dq:
    now = dq.popleft()
    for nxt in edges[now]:
        if dist[nxt] == -1:
            dist[nxt] = dist[now] + 1
            dq.append(nxt)
        else:
            if dist[nxt] == dist[now]:
                exit(print("No"))

print("Yes")
0