結果

問題 No.1242 高橋君とすごろく
ユーザー maninimanini
提出日時 2021-01-25 21:43:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-06-22 18:15:42
合計ジャッジ時間 2,103 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,000 KB
testcase_01 AC 37 ms
52,952 KB
testcase_02 WA -
testcase_03 AC 33 ms
52,888 KB
testcase_04 AC 33 ms
52,000 KB
testcase_05 AC 33 ms
52,840 KB
testcase_06 AC 32 ms
51,868 KB
testcase_07 AC 34 ms
52,412 KB
testcase_08 AC 34 ms
53,036 KB
testcase_09 AC 35 ms
52,432 KB
testcase_10 AC 36 ms
52,692 KB
testcase_11 AC 33 ms
52,956 KB
testcase_12 AC 33 ms
52,908 KB
testcase_13 AC 34 ms
52,508 KB
testcase_14 AC 35 ms
53,148 KB
testcase_15 AC 36 ms
52,660 KB
testcase_16 WA -
testcase_17 AC 33 ms
53,560 KB
testcase_18 AC 36 ms
51,992 KB
testcase_19 AC 34 ms
53,328 KB
testcase_20 AC 35 ms
52,276 KB
testcase_21 AC 34 ms
52,124 KB
testcase_22 AC 33 ms
52,816 KB
testcase_23 AC 34 ms
52,200 KB
testcase_24 AC 35 ms
52,824 KB
testcase_25 AC 34 ms
52,576 KB
testcase_26 AC 33 ms
52,756 KB
testcase_27 AC 36 ms
53,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

N, K = list(map(int, input().split()))     # スペース区切り連続数字
A = list(map(int, input().split()))     # スペース区切り連続数字

nums = set(A)

for a in A:
    if a == 2:
        if 1 not in nums and 7 in nums:
            print("No")
            exit()
    elif a == 3:
        if 2 not in nums and 8 in nums:
            print("No")
            exit()
        if 1 not in nums and 6 in nums:
            print("No")
            exit()
    else:
        if a - 1 not in nums and a + 5 in nums:
            print("No")
            exit()
        if a - 2 not in nums and a + 3 in nums:
            print("No")
            exit()
        if a - 3 not in nums and a + 1 in nums:
            print("No")
            exit()

print("Yes")
0