結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,624 KB
testcase_01 AC 35 ms
53,416 KB
testcase_02 AC 35 ms
52,064 KB
testcase_03 AC 38 ms
52,128 KB
testcase_04 AC 41 ms
52,760 KB
testcase_05 AC 90 ms
76,584 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 68 ms
77,388 KB
testcase_09 AC 69 ms
78,008 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 MLE -
testcase_13 AC 69 ms
77,152 KB
testcase_14 WA -
testcase_15 AC 64 ms
76,964 KB
testcase_16 AC 73 ms
76,924 KB
testcase_17 AC 78 ms
77,456 KB
testcase_18 AC 79 ms
77,992 KB
testcase_19 AC 91 ms
79,076 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 64 ms
77,028 KB
testcase_26 MLE -
testcase_27 WA -
testcase_28 AC 69 ms
79,392 KB
testcase_29 AC 69 ms
79,452 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