結果

問題 No.680 作れる数
ユーザー kohei2019kohei2019
提出日時 2022-03-12 02:23:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 330,128 KB
最終ジャッジ日時 2024-09-16 07:16:43
合計ジャッジ時間 18,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 904 ms
328,436 KB
testcase_01 AC 980 ms
328,432 KB
testcase_02 AC 826 ms
328,312 KB
testcase_03 AC 823 ms
328,444 KB
testcase_04 AC 852 ms
328,828 KB
testcase_05 AC 820 ms
328,440 KB
testcase_06 AC 825 ms
328,308 KB
testcase_07 AC 842 ms
328,316 KB
testcase_08 AC 834 ms
328,436 KB
testcase_09 AC 832 ms
328,564 KB
testcase_10 AC 824 ms
328,564 KB
testcase_11 AC 823 ms
328,828 KB
testcase_12 AC 855 ms
328,440 KB
testcase_13 WA -
testcase_14 AC 838 ms
328,060 KB
testcase_15 WA -
testcase_16 AC 824 ms
328,564 KB
testcase_17 WA -
testcase_18 AC 819 ms
328,692 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
d = 22
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