結果

問題 No.408 五輪ピック
ユーザー titiatitia
提出日時 2024-05-04 02:44:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 458 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-11-25 08:55:57
合計ジャッジ時間 3,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,640 KB
testcase_01 AC 38 ms
52,432 KB
testcase_02 AC 37 ms
53,480 KB
testcase_03 AC 38 ms
53,636 KB
testcase_04 AC 39 ms
52,212 KB
testcase_05 AC 72 ms
77,056 KB
testcase_06 MLE -
testcase_07 AC 80 ms
79,716 KB
testcase_08 AC 73 ms
77,216 KB
testcase_09 AC 79 ms
77,836 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 86 ms
79,288 KB
testcase_13 AC 75 ms
76,808 KB
testcase_14 WA -
testcase_15 AC 71 ms
76,900 KB
testcase_16 AC 79 ms
76,944 KB
testcase_17 AC 85 ms
78,012 KB
testcase_18 AC 86 ms
78,332 KB
testcase_19 AC 92 ms
79,428 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 71 ms
77,140 KB
testcase_26 MLE -
testcase_27 WA -
testcase_28 AC 78 ms
79,232 KB
testcase_29 AC 74 ms
79,584 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

E=[set() for i in range(N)]
L=[]

for i in range(M):
    a,b=map(int,input().split())
    a-=1
    b-=1
    if a==0:
        L.append(b)
    elif b==0:
        L.append(a)
    else:
        E[a].add(b)
        E[b].add(a)

for i in range(len(L)):
    a=L[i]
    for j in range(i+1,len(L)):
        b=L[j]

        if a & b != set():
            print("YES")
            exit()

print("NO")
0