結果
問題 | No.1563 Same Degree |
ユーザー | kept1994 |
提出日時 | 2022-04-29 04:16:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 594 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 82,212 KB |
実行使用メモリ | 260,612 KB |
最終ジャッジ日時 | 2024-06-28 11:55:33 |
合計ジャッジ時間 | 19,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 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 | 96 ms
81,812 KB |
testcase_12 | AC | 120 ms
86,668 KB |
testcase_13 | AC | 215 ms
88,364 KB |
testcase_14 | AC | 234 ms
87,076 KB |
testcase_15 | AC | 176 ms
86,380 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 else: print("No") return if __name__ == '__main__': main()