結果

問題 No.1563 Same Degree
ユーザー MottchanMottchan
提出日時 2023-03-27 21:45:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-09-19 16:28:27
合計ジャッジ時間 4,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 144 ms
77,436 KB
testcase_02 AC 142 ms
77,056 KB
testcase_03 AC 143 ms
77,184 KB
testcase_04 AC 146 ms
76,800 KB
testcase_05 AC 147 ms
77,184 KB
testcase_06 AC 228 ms
78,080 KB
testcase_07 AC 219 ms
78,080 KB
testcase_08 AC 215 ms
78,048 KB
testcase_09 AC 177 ms
77,820 KB
testcase_10 AC 221 ms
77,824 KB
testcase_11 AC 99 ms
90,368 KB
testcase_12 AC 122 ms
90,624 KB
testcase_13 AC 210 ms
90,496 KB
testcase_14 AC 227 ms
90,752 KB
testcase_15 AC 172 ms
90,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

for i in range(n):
    N,M = map(int, input().split())
    d = {i:0 for i in range(1,N+1)}
    for k in range(M):
        for j in list(map(int, input().split())):
            a = d[j]
            d[j] = a + 1

    if len(d.values()) != len(set(d.values())):
        print('Yes')
    else:
        print('No')
0