結果

問題 No.2664 Prime Sum
ユーザー 寝癖寝癖
提出日時 2024-03-08 21:18:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 70,772 KB
最終ジャッジ日時 2024-03-08 21:18:32
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,612 KB
testcase_01 AC 40 ms
55,612 KB
testcase_02 AC 41 ms
55,612 KB
testcase_03 AC 42 ms
55,612 KB
testcase_04 AC 41 ms
55,612 KB
testcase_05 AC 55 ms
63,700 KB
testcase_06 AC 54 ms
63,572 KB
testcase_07 AC 44 ms
55,612 KB
testcase_08 AC 49 ms
57,660 KB
testcase_09 AC 55 ms
63,188 KB
testcase_10 AC 49 ms
57,660 KB
testcase_11 AC 41 ms
55,604 KB
testcase_12 AC 47 ms
57,660 KB
testcase_13 AC 56 ms
63,700 KB
testcase_14 AC 68 ms
70,772 KB
testcase_15 AC 71 ms
70,772 KB
testcase_16 AC 68 ms
70,772 KB
testcase_17 AC 47 ms
55,612 KB
testcase_18 AC 57 ms
63,700 KB
testcase_19 AC 60 ms
65,772 KB
testcase_20 AC 68 ms
70,772 KB
testcase_21 AC 67 ms
70,772 KB
testcase_22 AC 56 ms
63,700 KB
testcase_23 AC 68 ms
70,772 KB
testcase_24 AC 67 ms
70,772 KB
testcase_25 AC 66 ms
70,772 KB
testcase_26 AC 42 ms
55,612 KB
testcase_27 AC 44 ms
55,612 KB
testcase_28 AC 41 ms
55,612 KB
testcase_29 AC 43 ms
55,612 KB
testcase_30 AC 42 ms
55,612 KB
testcase_31 AC 42 ms
55,612 KB
testcase_32 AC 43 ms
55,612 KB
testcase_33 AC 44 ms
55,612 KB
testcase_34 AC 43 ms
55,612 KB
testcase_35 AC 45 ms
55,612 KB
testcase_36 AC 40 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
l = [-1] * n

to = [[] for _ in range(n)]
for _ in range(m):
    aa, bb = map(int, input().split())
    aa -= 1
    bb -= 1
    to[aa].append(bb)
    to[bb].append(aa)

for i in range(n):
    if l[i] != -1:
        continue
    l[i] = 0
    q = deque([i])
    while q:
        v = q.popleft()
        for u in to[v]:
            if l[u] != -1:
                if l[u] == l[v]:
                    print("No")
                    exit()
                continue
            l[u] = 1 - l[v]
            q.append(u)

print("Yes")
0