結果

問題 No.2664 Prime Sum
ユーザー ntudantuda
提出日時 2024-03-09 00:15:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 73,460 KB
最終ジャッジ日時 2024-09-29 21:00:53
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,056 KB
testcase_01 AC 34 ms
53,452 KB
testcase_02 AC 33 ms
52,528 KB
testcase_03 AC 35 ms
54,016 KB
testcase_04 AC 33 ms
52,400 KB
testcase_05 AC 49 ms
63,836 KB
testcase_06 AC 46 ms
62,940 KB
testcase_07 AC 39 ms
54,208 KB
testcase_08 AC 43 ms
60,568 KB
testcase_09 AC 48 ms
64,216 KB
testcase_10 AC 42 ms
61,532 KB
testcase_11 AC 34 ms
53,072 KB
testcase_12 AC 37 ms
55,452 KB
testcase_13 AC 47 ms
63,212 KB
testcase_14 AC 60 ms
69,824 KB
testcase_15 AC 62 ms
70,492 KB
testcase_16 AC 60 ms
70,600 KB
testcase_17 AC 38 ms
55,516 KB
testcase_18 AC 48 ms
64,904 KB
testcase_19 AC 49 ms
64,704 KB
testcase_20 AC 57 ms
69,800 KB
testcase_21 AC 61 ms
70,144 KB
testcase_22 AC 47 ms
62,820 KB
testcase_23 AC 60 ms
73,096 KB
testcase_24 AC 60 ms
73,460 KB
testcase_25 AC 58 ms
71,072 KB
testcase_26 AC 35 ms
53,688 KB
testcase_27 AC 36 ms
53,344 KB
testcase_28 AC 35 ms
54,320 KB
testcase_29 AC 34 ms
52,804 KB
testcase_30 AC 34 ms
52,748 KB
testcase_31 AC 34 ms
52,524 KB
testcase_32 AC 36 ms
53,684 KB
testcase_33 AC 36 ms
54,736 KB
testcase_34 AC 36 ms
53,036 KB
testcase_35 AC 38 ms
54,504 KB
testcase_36 AC 34 ms
53,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
AB = [list(map(int,input().split())) for _ in range(M)]
E = [[] for _ in range(N)]
for a,b in AB:
    E[a-1].append(b-1)
    E[b-1].append(a-1)
C = [-1] * N
def bfs(x):
    for y in E[x]:
        if C[y] == C[x]:
            print("No")
            exit()
        if C[y] == -1:
            C[y] = C[x] ^ 1
            bfs(y)

for i in range(N):
    if C[i] == -1:
        C[i] = 0
        bfs(i)

print("Yes")

0