結果
| 問題 | No.680 作れる数 |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-26 15:46:34 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| コード長 | 375 bytes |
| 記録 | |
| コンパイル時間 | 221 ms |
| コンパイル使用メモリ | 96,484 KB |
| 実行使用メモリ | 78,980 KB |
| 最終ジャッジ日時 | 2026-07-07 22:09:59 |
| 合計ジャッジ時間 | 2,830 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
n = int(input())
if n == 0:
print("YES")
else:
terms = []
m = 1
while True:
term = (1 << m) - 1
if term > n:
break
terms.append(term)
m += 1
terms.sort(reverse=True)
remaining = n
for term in terms:
if term <= remaining:
remaining -= term
print("YES" if remaining == 0 else "NO")
lam6er