結果

問題 No.629 グラフの中に眠る門松列
ユーザー flippergoflippergo
提出日時 2024-10-13 08:13:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,496 KB
最終ジャッジ日時 2024-10-13 08:13:12
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 WA -
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 37 ms
51,712 KB
testcase_12 WA -
testcase_13 AC 38 ms
51,584 KB
testcase_14 AC 37 ms
52,224 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 63 ms
65,280 KB
testcase_22 AC 52 ms
62,208 KB
testcase_23 AC 71 ms
65,280 KB
testcase_24 AC 67 ms
71,424 KB
testcase_25 AC 84 ms
74,480 KB
testcase_26 AC 77 ms
72,704 KB
testcase_27 AC 72 ms
73,728 KB
testcase_28 AC 43 ms
54,784 KB
testcase_29 AC 65 ms
70,784 KB
testcase_30 AC 83 ms
74,496 KB
testcase_31 AC 73 ms
74,112 KB
testcase_32 AC 71 ms
72,704 KB
testcase_33 AC 73 ms
74,240 KB
testcase_34 AC 68 ms
71,936 KB
testcase_35 AC 71 ms
72,704 KB
testcase_36 AC 64 ms
70,144 KB
testcase_37 AC 71 ms
73,216 KB
testcase_38 AC 63 ms
70,144 KB
testcase_39 AC 69 ms
71,680 KB
testcase_40 AC 74 ms
73,472 KB
testcase_41 AC 63 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A =[0]+list(map(int,input().split()))
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    u,v = map(int,input().split())
    G[u].append(v)
    G[v].append(u)
ans = "NO"
for i in range(1,N+1):
    if len(G[i])<2:continue
    for j1 in range(len(G[i])-1):
        for j2 in range(j1+1,len(G[i])):
            u = G[i][j1]
            v = G[i][j2]
            if A[i]!=A[u] and A[u]!=A[v] and A[v]!=A[i] and min(A[i],A[u],A[v])==A[i]:
                ans = "YES"
                break
        if ans=="YES":break
    if ans=="YES":break
print(ans)
0