結果
問題 | No.408 五輪ピック |
ユーザー | hiro1729 |
提出日時 | 2024-09-09 20:13:36 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 403 ms |
コンパイル使用メモリ | 82,788 KB |
実行使用メモリ | 89,944 KB |
最終ジャッジ日時 | 2024-09-09 20:13:49 |
合計ジャッジ時間 | 12,464 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,880 KB |
testcase_01 | AC | 36 ms
53,060 KB |
testcase_02 | AC | 37 ms
52,592 KB |
testcase_03 | AC | 38 ms
53,148 KB |
testcase_04 | AC | 39 ms
52,192 KB |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | AC | 98 ms
79,228 KB |
testcase_11 | AC | 99 ms
79,052 KB |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | AC | 87 ms
77,856 KB |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 87 ms
78,948 KB |
testcase_21 | AC | 103 ms
78,440 KB |
testcase_22 | AC | 95 ms
79,652 KB |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
N, M = map(int, input().split()) edges = [] g = [set() for _ in range(N)] for _ in range(M): A, B = map(int, input().split()) A -= 1 B -= 1 g[A].add(B) g[B].add(A) edges.append((A, B)) e2 = [] for a, b in edges: if a == 0 or b == 0: continue if a in g[0]: e2.append((a, b)) if b in g[0]: e2.append((b, a)) for i, j in e2: for k, l in e2: if i != k and l in g[j]: print("YES") exit() print("NO")