結果

問題 No.1242 高橋君とすごろく
ユーザー 👑 KazunKazun
提出日時 2020-10-02 21:23:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 53,836 KB
最終ジャッジ日時 2024-07-16 04:12:36
合計ジャッジ時間 2,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,052 KB
testcase_01 AC 37 ms
52,076 KB
testcase_02 WA -
testcase_03 AC 35 ms
52,724 KB
testcase_04 AC 34 ms
52,068 KB
testcase_05 WA -
testcase_06 AC 35 ms
52,000 KB
testcase_07 AC 37 ms
51,964 KB
testcase_08 AC 40 ms
51,872 KB
testcase_09 AC 36 ms
52,664 KB
testcase_10 WA -
testcase_11 AC 38 ms
53,100 KB
testcase_12 AC 36 ms
52,124 KB
testcase_13 WA -
testcase_14 AC 37 ms
52,144 KB
testcase_15 AC 35 ms
53,016 KB
testcase_16 WA -
testcase_17 AC 35 ms
52,180 KB
testcase_18 AC 36 ms
52,820 KB
testcase_19 AC 36 ms
52,116 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 35 ms
53,556 KB
testcase_26 AC 35 ms
51,940 KB
testcase_27 AC 36 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B=[]
for k in range(K-1):
    B.append(A[k+1]-A[k])

if 1 in B or 2 in B or 3 in B:
    print("No")
else:
    print("Yes")
0