結果
問題 | No.1242 高橋君とすごろく |
ユーザー | ayaoni |
提出日時 | 2021-04-25 01:35:17 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 809 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 61,312 KB |
最終ジャッジ日時 | 2024-07-04 09:21:10 |
合計ジャッジ時間 | 2,868 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,968 KB |
testcase_01 | AC | 39 ms
51,840 KB |
testcase_02 | AC | 39 ms
52,224 KB |
testcase_03 | AC | 39 ms
51,840 KB |
testcase_04 | AC | 42 ms
51,968 KB |
testcase_05 | AC | 40 ms
51,840 KB |
testcase_06 | AC | 38 ms
51,968 KB |
testcase_07 | AC | 40 ms
51,968 KB |
testcase_08 | AC | 42 ms
52,352 KB |
testcase_09 | AC | 42 ms
51,712 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 39 ms
52,096 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) N,K = MI() A = LI() is_ok = [1]*(N+1) for a in A: is_ok[a] = 0 for i in range(N-1,0,-1): if is_ok[i] == 0: continue for j in range(1,4): if i+j > N or is_ok[i+j] or i+(7-j) > N or is_ok[i+(7-j)]: continue else: is_ok[i] = 0 break if is_ok[1]: print('Yes') else: print('No')