結果
問題 | No.1563 Same Degree |
ユーザー | kept1994 |
提出日時 | 2022-04-29 04:15:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 358 ms |
コンパイル使用メモリ | 82,144 KB |
実行使用メモリ | 260,416 KB |
最終ジャッジ日時 | 2024-06-28 11:54:29 |
合計ジャッジ時間 | 20,010 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
56,704 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | AC | 97 ms
81,924 KB |
testcase_12 | AC | 130 ms
86,716 KB |
testcase_13 | AC | 237 ms
87,960 KB |
testcase_14 | AC | 252 ms
87,272 KB |
testcase_15 | AC | 183 ms
86,168 KB |
ソースコード
#!/usr/bin/env python3 from collections import defaultdict import sys MOD = 998244353 def main(): T = int(input()) for i in range(T): N, M = map(int, input().split()) d = defaultdict(int) c = [0] * (2 * 10 ** 5 + 1) for _ in range(M): u, v = map(int, input().split()) d[u] += 1 d[v] += 1 for k, dd in d.items(): c[dd] += 1 if c[dd] == 2: print("Yes") break return if __name__ == '__main__': main()