結果
問題 | No.680 作れる数 |
ユーザー | H20 |
提出日時 | 2020-12-02 10:30:58 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 250 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 89,592 KB |
最終ジャッジ日時 | 2024-09-13 04:08:11 |
合計ジャッジ時間 | 4,501 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
59,996 KB |
testcase_01 | AC | 37 ms
52,524 KB |
testcase_02 | AC | 37 ms
52,276 KB |
testcase_03 | AC | 38 ms
52,668 KB |
testcase_04 | AC | 37 ms
52,336 KB |
testcase_05 | AC | 38 ms
53,972 KB |
testcase_06 | AC | 45 ms
59,804 KB |
testcase_07 | AC | 68 ms
75,356 KB |
testcase_08 | AC | 70 ms
75,448 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 9) N = int(input()) def dfs(s,t): if N==s: return True if N<s: return False return dfs(s+t*2,t*2) or dfs(s+t*2+1,t*2+1) if dfs(1,1) or N==0: print('YES') else: print('NO')