結果

問題 No.2202 贅沢てりたまチキン
ユーザー ああいいああいい
提出日時 2023-02-04 16:03:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 592 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 641,920 KB
最終ジャッジ日時 2024-07-03 13:15:24
合計ジャッジ時間 7,750 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 38 ms
60,160 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 401 ms
259,584 KB
testcase_15 AC 565 ms
275,200 KB
testcase_16 AC 154 ms
79,360 KB
testcase_17 MLE -
testcase_18 AC 175 ms
77,960 KB
testcase_19 AC 112 ms
79,488 KB
testcase_20 AC 167 ms
80,100 KB
testcase_21 AC 171 ms
79,792 KB
testcase_22 AC 161 ms
76,356 KB
testcase_23 AC 300 ms
78,720 KB
testcase_24 AC 266 ms
77,628 KB
testcase_25 AC 468 ms
82,592 KB
testcase_26 AC 359 ms
171,776 KB
testcase_27 AC 358 ms
171,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

N,M = map(int,input().split())

C = 2 * N
parent = list(range(C))
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[I] = J
    parent[i] = J
    return True
def isSame(i,j):
    return find(i) == find(j)
for _ in range(M):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    unite(a,b + N)
    unite(a + N,b)
for i in range(N):
    if find(i) != find(i + N):
        print('No')
        exit()
print('Yes')
0