結果

問題 No.1242 高橋君とすごろく
ユーザー raven7959raven7959
提出日時 2021-09-30 08:58:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 59,992 KB
最終ジャッジ日時 2024-07-17 12:01:37
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 37 ms
51,832 KB
testcase_02 AC 37 ms
52,208 KB
testcase_03 AC 37 ms
52,136 KB
testcase_04 AC 37 ms
53,564 KB
testcase_05 AC 36 ms
52,360 KB
testcase_06 AC 37 ms
52,440 KB
testcase_07 AC 37 ms
53,028 KB
testcase_08 AC 38 ms
52,128 KB
testcase_09 AC 41 ms
52,068 KB
testcase_10 AC 41 ms
58,260 KB
testcase_11 AC 43 ms
59,204 KB
testcase_12 AC 41 ms
59,992 KB
testcase_13 AC 41 ms
59,192 KB
testcase_14 AC 41 ms
57,988 KB
testcase_15 AC 41 ms
58,304 KB
testcase_16 AC 41 ms
58,204 KB
testcase_17 AC 37 ms
52,968 KB
testcase_18 AC 37 ms
52,120 KB
testcase_19 AC 36 ms
52,320 KB
testcase_20 AC 41 ms
58,716 KB
testcase_21 AC 36 ms
51,816 KB
testcase_22 AC 41 ms
57,772 KB
testcase_23 AC 40 ms
58,728 KB
testcase_24 AC 41 ms
57,652 KB
testcase_25 AC 40 ms
59,452 KB
testcase_26 AC 41 ms
58,452 KB
testcase_27 AC 37 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
L=[]
for i in range(K):
  for j in range(i+1,K):
    if A[j]-A[i]==1:
      if not A[j] in (3,4,6,9):
        print("No")
        exit()
    elif A[j]-A[i]==3:
      if not A[j] in (2,3,5,8,10):
        print("No")
        exit()
    elif A[j]-A[i]==5:
      if not A[j] in (2,3,4,5,8,9,11,14):
        print("No")
        exit()
print("Yes")
0