結果

問題 No.1242 高橋君とすごろく
ユーザー intel_outsideintel_outside
提出日時 2020-10-02 22:05:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-07-17 13:26:47
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
52,072 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,624 KB
testcase_04 AC 36 ms
53,088 KB
testcase_05 AC 37 ms
52,088 KB
testcase_06 AC 37 ms
52,740 KB
testcase_07 AC 39 ms
52,760 KB
testcase_08 AC 38 ms
53,156 KB
testcase_09 AC 37 ms
52,700 KB
testcase_10 WA -
testcase_11 AC 38 ms
52,444 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,088 KB
testcase_14 WA -
testcase_15 AC 36 ms
52,284 KB
testcase_16 AC 37 ms
52,220 KB
testcase_17 WA -
testcase_18 AC 37 ms
52,432 KB
testcase_19 AC 37 ms
53,380 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 37 ms
53,292 KB
testcase_23 AC 38 ms
53,240 KB
testcase_24 AC 37 ms
54,028 KB
testcase_25 AC 36 ms
52,072 KB
testcase_26 AC 37 ms
52,348 KB
testcase_27 AC 37 ms
53,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
flag = True

for i in range(K-1):
    if A[i] >= 5 and A[i+1] - A[i] == 1:
        flag = False

A = [1] + A
K = len(A)
# print(A)

for i in range(K):

    for j in range(1, 7):
        if (A[i] + j in A) and (A[i] + (7-j)) in A:
            flag = False

if flag:
    print("Yes")
else:
    print("No")
0