結果

問題 No.629 グラフの中に眠る門松列
ユーザー titiatitia
提出日時 2024-06-10 03:51:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 4,000 ms
コード長 544 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-06-10 03:51:24
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 36 ms
52,096 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 35 ms
52,096 KB
testcase_21 AC 61 ms
62,592 KB
testcase_22 AC 40 ms
54,528 KB
testcase_23 AC 51 ms
61,952 KB
testcase_24 AC 48 ms
61,952 KB
testcase_25 AC 69 ms
68,864 KB
testcase_26 AC 57 ms
65,024 KB
testcase_27 AC 56 ms
65,024 KB
testcase_28 AC 45 ms
59,008 KB
testcase_29 AC 54 ms
64,256 KB
testcase_30 AC 57 ms
65,408 KB
testcase_31 AC 61 ms
66,432 KB
testcase_32 AC 61 ms
64,256 KB
testcase_33 AC 64 ms
68,096 KB
testcase_34 AC 52 ms
63,360 KB
testcase_35 AC 53 ms
63,488 KB
testcase_36 AC 62 ms
66,944 KB
testcase_37 AC 60 ms
65,664 KB
testcase_38 AC 53 ms
64,000 KB
testcase_39 AC 49 ms
61,824 KB
testcase_40 AC 53 ms
63,360 KB
testcase_41 AC 53 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))
E=[[] for i in range(N)]

for i in range(M):
    x,y=map(int,input().split())
    x-=1
    y-=1
    E[x].append(y)
    E[y].append(x)

for i in range(N):
    a=A[i]

    for to in E[i]:
        b=A[to]
        for toto in E[to]:
            c=A[toto]

            if a<b and b>c and a!=c:
                print("YES")
                exit()
            if a>b and b<c and a!=c:
                print("YES")
                exit()

print("NO")
0