結果

問題 No.2664 Prime Sum
ユーザー flygonflygon
提出日時 2024-03-08 21:38:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-09-29 19:01:52
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,656 KB
testcase_01 AC 45 ms
54,656 KB
testcase_02 AC 46 ms
54,400 KB
testcase_03 AC 45 ms
55,296 KB
testcase_04 AC 45 ms
54,784 KB
testcase_05 AC 51 ms
61,312 KB
testcase_06 AC 51 ms
61,056 KB
testcase_07 AC 46 ms
55,040 KB
testcase_08 AC 50 ms
61,312 KB
testcase_09 AC 51 ms
61,824 KB
testcase_10 AC 49 ms
60,928 KB
testcase_11 AC 44 ms
54,400 KB
testcase_12 AC 46 ms
55,552 KB
testcase_13 AC 51 ms
61,696 KB
testcase_14 AC 54 ms
63,744 KB
testcase_15 AC 56 ms
64,384 KB
testcase_16 AC 57 ms
63,552 KB
testcase_17 AC 46 ms
55,168 KB
testcase_18 AC 51 ms
61,824 KB
testcase_19 AC 51 ms
61,568 KB
testcase_20 AC 54 ms
64,256 KB
testcase_21 AC 54 ms
63,872 KB
testcase_22 AC 51 ms
61,952 KB
testcase_23 AC 53 ms
64,256 KB
testcase_24 AC 54 ms
64,512 KB
testcase_25 AC 54 ms
64,512 KB
testcase_26 AC 44 ms
54,784 KB
testcase_27 AC 46 ms
55,168 KB
testcase_28 AC 45 ms
55,040 KB
testcase_29 AC 46 ms
54,784 KB
testcase_30 AC 46 ms
54,912 KB
testcase_31 AC 46 ms
55,040 KB
testcase_32 AC 47 ms
55,020 KB
testcase_33 AC 47 ms
55,296 KB
testcase_34 AC 46 ms
54,656 KB
testcase_35 AC 46 ms
54,912 KB
testcase_36 AC 44 ms
54,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
graph = [[] for i in range(n+1)]
for i in range(m):
    u,v = map(int,input().split())
    graph[u].append(v)
    graph[v].append(u)


depth = [-1]*(n+1)
def bfs(s, n):
    que = deque([s])
    depth[s] = 0
    ok = 1
    while que:
        crr = que.popleft()
        for nxt in graph[crr]:
            if depth[nxt] == -1:
                depth[nxt] = depth[crr]^1
                que.append(nxt)
            elif depth[nxt]^1 != depth[crr]:
                ok = 0
    return ok

ans = 1
for i in range(1,n+1):
    if depth[i] != -1: continue
    ans &= bfs(i, n)

if ans:
    print('Yes')
else:
    print('No')
0