結果

問題 No.1465 Archaea
ユーザー AEnAEn
提出日時 2022-06-15 00:38:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,704 KB
最終ジャッジ日時 2024-10-03 03:44:53
合計ジャッジ時間 2,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 41 ms
53,228 KB
testcase_07 AC 60 ms
65,920 KB
testcase_08 AC 43 ms
53,504 KB
testcase_09 AC 64 ms
67,584 KB
testcase_10 AC 43 ms
53,504 KB
testcase_11 AC 65 ms
66,560 KB
testcase_12 AC 49 ms
60,032 KB
testcase_13 AC 73 ms
71,040 KB
testcase_14 AC 64 ms
66,740 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 71 ms
71,552 KB
testcase_18 AC 57 ms
63,488 KB
testcase_19 WA -
testcase_20 AC 69 ms
69,376 KB
testcase_21 AC 76 ms
72,192 KB
testcase_22 AC 78 ms
72,704 KB
testcase_23 AC 45 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, K = map(int, input().split())
is_ok = [False]*(N+1)
is_ok[1] = True
d = deque()
d.append(1)
while d:
    p = d.popleft()
    if p*2<=N and is_ok[p*2]==False:
        is_ok[p*2] = True
        d.append(p*2)
    if p+3<=N and is_ok[p+3]==False:
        is_ok[p+3] = True
        d.append(p+3)
if is_ok[-1]:
    print('YES')
else:
    print('NO')
0