結果

問題 No.2664 Prime Sum
ユーザー ShirotsumeShirotsume
提出日時 2024-03-08 21:07:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 627 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 67,116 KB
最終ジャッジ日時 2024-09-29 18:50:51
合計ジャッジ時間 2,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,116 KB
testcase_01 AC 45 ms
57,180 KB
testcase_02 AC 45 ms
56,400 KB
testcase_03 AC 45 ms
56,204 KB
testcase_04 AC 46 ms
55,892 KB
testcase_05 AC 48 ms
63,184 KB
testcase_06 AC 48 ms
62,856 KB
testcase_07 AC 43 ms
56,572 KB
testcase_08 AC 44 ms
58,616 KB
testcase_09 AC 44 ms
58,292 KB
testcase_10 AC 43 ms
57,056 KB
testcase_11 AC 40 ms
55,484 KB
testcase_12 AC 42 ms
56,624 KB
testcase_13 AC 48 ms
63,788 KB
testcase_14 AC 53 ms
66,600 KB
testcase_15 AC 54 ms
67,004 KB
testcase_16 AC 53 ms
66,988 KB
testcase_17 WA -
testcase_18 AC 46 ms
57,896 KB
testcase_19 AC 45 ms
58,672 KB
testcase_20 AC 51 ms
65,888 KB
testcase_21 AC 53 ms
67,116 KB
testcase_22 AC 47 ms
63,336 KB
testcase_23 AC 54 ms
66,676 KB
testcase_24 AC 53 ms
66,636 KB
testcase_25 AC 51 ms
65,848 KB
testcase_26 AC 42 ms
57,388 KB
testcase_27 AC 42 ms
57,264 KB
testcase_28 AC 40 ms
56,432 KB
testcase_29 AC 41 ms
56,192 KB
testcase_30 AC 41 ms
56,152 KB
testcase_31 AC 41 ms
56,672 KB
testcase_32 AC 42 ms
57,056 KB
testcase_33 AC 44 ms
56,684 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 42 ms
56,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n, m = mi()
graph = [[] for _ in range(n)]
for _ in range(m):
    a, b = mi()
    graph[a - 1].append(b - 1)
    graph[b - 1].append(a - 1)
    
# is bipartite

color = [-1] * n
def dfs(v, c):
    color[v] = c
    for u in graph[v]:
        if color[u] == -1:
            dfs(u, c ^ 1)
        elif color[u] == c:
            print('No')
            exit()
dfs(0, 0)

print('Yes')
0