結果

問題 No.629 グラフの中に眠る門松列
ユーザー roarisroaris
提出日時 2019-09-01 20:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 4,000 ms
コード長 613 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 76,564 KB
最終ジャッジ日時 2024-05-06 19:54:28
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,312 KB
testcase_01 AC 39 ms
52,752 KB
testcase_02 AC 39 ms
52,524 KB
testcase_03 AC 38 ms
52,948 KB
testcase_04 AC 38 ms
52,820 KB
testcase_05 AC 38 ms
52,552 KB
testcase_06 AC 38 ms
52,824 KB
testcase_07 AC 38 ms
53,340 KB
testcase_08 AC 37 ms
53,544 KB
testcase_09 AC 37 ms
52,332 KB
testcase_10 AC 39 ms
53,028 KB
testcase_11 AC 39 ms
53,932 KB
testcase_12 AC 37 ms
53,248 KB
testcase_13 AC 38 ms
52,968 KB
testcase_14 AC 38 ms
52,456 KB
testcase_15 AC 38 ms
52,884 KB
testcase_16 AC 38 ms
52,828 KB
testcase_17 AC 39 ms
52,508 KB
testcase_18 AC 38 ms
52,808 KB
testcase_19 AC 39 ms
52,256 KB
testcase_20 AC 39 ms
52,532 KB
testcase_21 AC 140 ms
76,080 KB
testcase_22 AC 42 ms
54,072 KB
testcase_23 AC 78 ms
75,660 KB
testcase_24 AC 47 ms
63,116 KB
testcase_25 AC 113 ms
76,376 KB
testcase_26 AC 103 ms
76,236 KB
testcase_27 AC 60 ms
74,356 KB
testcase_28 AC 45 ms
60,920 KB
testcase_29 AC 55 ms
66,672 KB
testcase_30 AC 67 ms
76,400 KB
testcase_31 AC 68 ms
76,288 KB
testcase_32 AC 58 ms
69,668 KB
testcase_33 AC 71 ms
76,564 KB
testcase_34 AC 56 ms
69,552 KB
testcase_35 AC 58 ms
68,276 KB
testcase_36 AC 55 ms
66,928 KB
testcase_37 AC 65 ms
76,384 KB
testcase_38 AC 53 ms
65,012 KB
testcase_39 AC 55 ms
67,248 KB
testcase_40 AC 60 ms
70,372 KB
testcase_41 AC 55 ms
66,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
a = list(map(int, input().split()))
adj_list = [[] for _ in range(N)]

for _ in range(M):
    ui, vi = map(int, input().split())
    adj_list[ui-1].append(vi-1)
    adj_list[vi-1].append(ui-1)

for i in range(N):
    for j in range(len(adj_list[i])):
        for k in range(len(adj_list[i])):
            if j == k:
                continue
            l = [a[adj_list[i][j]], a[i], a[adj_list[i][k]]]
            
            if len(set(l)) == 3 and a[i] in [max(l), min(l)]:
                print('YES')
                exit()

print('NO')
0