結果

問題 No.2664 Prime Sum
ユーザー detteiuudetteiuu
提出日時 2024-08-04 19:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 72,220 KB
最終ジャッジ日時 2024-08-04 19:59:50
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,900 KB
testcase_01 AC 39 ms
54,564 KB
testcase_02 AC 39 ms
54,452 KB
testcase_03 AC 39 ms
54,596 KB
testcase_04 AC 39 ms
55,188 KB
testcase_05 AC 50 ms
63,836 KB
testcase_06 AC 49 ms
62,960 KB
testcase_07 AC 40 ms
55,680 KB
testcase_08 AC 45 ms
57,200 KB
testcase_09 AC 49 ms
63,408 KB
testcase_10 AC 45 ms
57,188 KB
testcase_11 AC 40 ms
54,748 KB
testcase_12 AC 44 ms
57,584 KB
testcase_13 AC 51 ms
64,348 KB
testcase_14 AC 61 ms
69,916 KB
testcase_15 AC 62 ms
72,052 KB
testcase_16 AC 61 ms
70,600 KB
testcase_17 AC 46 ms
56,868 KB
testcase_18 AC 54 ms
64,044 KB
testcase_19 AC 59 ms
64,668 KB
testcase_20 AC 67 ms
70,064 KB
testcase_21 AC 67 ms
69,964 KB
testcase_22 AC 53 ms
64,048 KB
testcase_23 AC 66 ms
71,124 KB
testcase_24 AC 65 ms
72,220 KB
testcase_25 AC 60 ms
69,440 KB
testcase_26 AC 39 ms
54,764 KB
testcase_27 AC 39 ms
54,924 KB
testcase_28 AC 38 ms
55,224 KB
testcase_29 AC 41 ms
55,568 KB
testcase_30 AC 39 ms
55,636 KB
testcase_31 AC 41 ms
55,828 KB
testcase_32 AC 41 ms
54,912 KB
testcase_33 AC 46 ms
54,924 KB
testcase_34 AC 44 ms
55,352 KB
testcase_35 AC 42 ms
56,800 KB
testcase_36 AC 37 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

def bfs(n):
    visited[n] = 0
    que = deque()
    que.append(n)
    while que:
        n = que.popleft()
        for v in G[n]:
            if visited[v] == -1:
                visited[v] = visited[n]^1
                que.append(v)
            elif visited[v] == visited[n]:
                exit(print("No"))

visited = [-1]*N
for i in range(N):
    if visited[i] == -1:
        bfs(i)

print("Yes")
0