結果

問題 No.680 作れる数
ユーザー kohei2019kohei2019
提出日時 2022-03-12 02:23:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 271,500 KB
最終ジャッジ日時 2024-09-16 07:12:44
合計ジャッジ時間 14,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 591 ms
271,248 KB
testcase_01 AC 600 ms
271,120 KB
testcase_02 AC 599 ms
270,736 KB
testcase_03 AC 609 ms
271,376 KB
testcase_04 AC 594 ms
270,736 KB
testcase_05 AC 613 ms
271,376 KB
testcase_06 AC 621 ms
271,376 KB
testcase_07 AC 622 ms
271,248 KB
testcase_08 AC 605 ms
271,124 KB
testcase_09 AC 603 ms
270,736 KB
testcase_10 AC 589 ms
271,240 KB
testcase_11 AC 591 ms
271,116 KB
testcase_12 AC 589 ms
271,116 KB
testcase_13 WA -
testcase_14 AC 597 ms
271,372 KB
testcase_15 WA -
testcase_16 AC 587 ms
271,240 KB
testcase_17 WA -
testcase_18 AC 596 ms
271,500 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
d = 21
ls = set()
def dfs(t,s,dep):
    if dep == d:
        ls.add(s)
        return
    ls.add(s)
    dfs(2*t, s+2*t, dep+1)
    dfs(2*t+1, s+2*t+1, dep+1)
dfs(0,0,0)
ls = list(ls)
ls.sort()
if N in ls:
    print('YES')
else:
    if ls[-1] < N:
        print('YES')
    else:
        print('NO')
0