結果

問題 No.2664 Prime Sum
ユーザー rlangevinrlangevin
提出日時 2024-03-08 21:19:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-09-29 18:55:30
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,872 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 43 ms
54,400 KB
testcase_04 AC 42 ms
54,400 KB
testcase_05 AC 56 ms
63,616 KB
testcase_06 AC 55 ms
62,464 KB
testcase_07 AC 42 ms
55,168 KB
testcase_08 AC 46 ms
56,704 KB
testcase_09 AC 52 ms
63,104 KB
testcase_10 AC 48 ms
56,576 KB
testcase_11 AC 39 ms
54,272 KB
testcase_12 AC 44 ms
56,192 KB
testcase_13 AC 52 ms
63,488 KB
testcase_14 AC 64 ms
70,144 KB
testcase_15 AC 64 ms
70,656 KB
testcase_16 AC 62 ms
69,888 KB
testcase_17 AC 43 ms
55,296 KB
testcase_18 AC 52 ms
63,872 KB
testcase_19 AC 53 ms
64,512 KB
testcase_20 AC 64 ms
70,016 KB
testcase_21 AC 63 ms
69,504 KB
testcase_22 AC 53 ms
63,616 KB
testcase_23 AC 65 ms
70,784 KB
testcase_24 AC 62 ms
70,656 KB
testcase_25 AC 62 ms
69,504 KB
testcase_26 AC 41 ms
54,656 KB
testcase_27 AC 41 ms
54,912 KB
testcase_28 AC 40 ms
54,144 KB
testcase_29 AC 39 ms
54,656 KB
testcase_30 AC 38 ms
53,888 KB
testcase_31 AC 39 ms
54,144 KB
testcase_32 AC 39 ms
55,040 KB
testcase_33 AC 40 ms
54,912 KB
testcase_34 AC 39 ms
55,040 KB
testcase_35 AC 42 ms
55,808 KB
testcase_36 AC 38 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
G = [[] for i in range(N)]
for i in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append(v)
    G[v].append(u)
    
dist = [-1] * N
from collections import deque
def bfs(G, s):
    Q = deque([s])
    N = len(G)
    par = [-1] * N
    dist[s] = 0
    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                if dist[v] == dist[u]:
                    print("No")
                    exit()
                continue
            dist[v] = 1 - dist[u]
            par[v] = u
            Q.append(v)
    return dist

for i in range(N):
    if dist[i] != -1:
        continue
    bfs(G, i)
    
print("Yes")
0