結果

問題 No.1242 高橋君とすごろく
ユーザー googol_S0googol_S0
提出日時 2020-10-02 21:38:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 425 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 61,692 KB
最終ジャッジ日時 2024-07-16 04:30:48
合計ジャッジ時間 2,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,924 KB
testcase_01 AC 37 ms
53,780 KB
testcase_02 AC 35 ms
52,688 KB
testcase_03 AC 36 ms
52,280 KB
testcase_04 AC 38 ms
52,208 KB
testcase_05 AC 38 ms
52,392 KB
testcase_06 AC 36 ms
51,944 KB
testcase_07 AC 36 ms
52,632 KB
testcase_08 AC 36 ms
51,944 KB
testcase_09 AC 38 ms
53,104 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 44 ms
61,212 KB
testcase_17 AC 44 ms
61,624 KB
testcase_18 AC 44 ms
61,572 KB
testcase_19 AC 44 ms
60,676 KB
testcase_20 AC 44 ms
60,448 KB
testcase_21 AC 44 ms
61,692 KB
testcase_22 AC 37 ms
53,680 KB
testcase_23 AC 38 ms
52,480 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 36 ms
53,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
for i in range(K):
  A[i]-=1
for i in range(K-1):
  if A[i+1]-A[i]>20:
    N-=A[i+1]-A[i]-20
    for j in range(K-1,i,-1):
      A[j]-=A[i+1]-A[i]-20
if N-A[-1]>20:
  N=A[-1]+20
A=set(A)
DP=[1]*(N+5)
for i in range(N-2,-1,-1):
  if i in A:
    DP[i]=0
    continue
  for j in range(1,7):
    DP[i]&=(DP[i+j]|DP[i+7-j])
if DP[0]:
  print('Yes')
else:
  print('No')
0