結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,172 KB
testcase_01 AC 40 ms
55,744 KB
testcase_02 AC 38 ms
56,516 KB
testcase_03 AC 39 ms
56,920 KB
testcase_04 AC 39 ms
55,844 KB
testcase_05 AC 44 ms
62,964 KB
testcase_06 AC 45 ms
62,252 KB
testcase_07 AC 40 ms
57,596 KB
testcase_08 AC 43 ms
57,136 KB
testcase_09 AC 42 ms
58,360 KB
testcase_10 AC 43 ms
58,980 KB
testcase_11 AC 40 ms
56,292 KB
testcase_12 AC 42 ms
57,128 KB
testcase_13 AC 46 ms
62,960 KB
testcase_14 AC 49 ms
65,688 KB
testcase_15 AC 50 ms
67,676 KB
testcase_16 AC 49 ms
66,448 KB
testcase_17 AC 39 ms
56,644 KB
testcase_18 AC 42 ms
58,288 KB
testcase_19 AC 42 ms
58,336 KB
testcase_20 AC 50 ms
66,724 KB
testcase_21 AC 49 ms
66,136 KB
testcase_22 AC 45 ms
62,904 KB
testcase_23 AC 49 ms
67,188 KB
testcase_24 AC 48 ms
67,320 KB
testcase_25 AC 47 ms
65,560 KB
testcase_26 AC 39 ms
56,300 KB
testcase_27 AC 41 ms
56,488 KB
testcase_28 AC 38 ms
55,844 KB
testcase_29 AC 38 ms
56,244 KB
testcase_30 AC 38 ms
57,172 KB
testcase_31 AC 38 ms
56,260 KB
testcase_32 AC 39 ms
57,384 KB
testcase_33 AC 40 ms
57,592 KB
testcase_34 AC 42 ms
56,032 KB
testcase_35 AC 39 ms
57,616 KB
testcase_36 AC 39 ms
55,852 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()
            
for i in range(n):
    if color[i] == -1:
        dfs(i, 0)
print('Yes')
0