結果

問題 No.680 作れる数
ユーザー kohei2019kohei2019
提出日時 2022-07-27 01:42:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-07-16 15:01:10
合計ジャッジ時間 2,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,528 KB
testcase_01 AC 41 ms
53,480 KB
testcase_02 AC 41 ms
53,476 KB
testcase_03 AC 40 ms
53,196 KB
testcase_04 AC 41 ms
52,612 KB
testcase_05 AC 44 ms
53,220 KB
testcase_06 AC 41 ms
52,592 KB
testcase_07 AC 42 ms
53,496 KB
testcase_08 AC 41 ms
53,036 KB
testcase_09 AC 41 ms
52,956 KB
testcase_10 AC 42 ms
52,864 KB
testcase_11 AC 41 ms
52,484 KB
testcase_12 AC 42 ms
53,772 KB
testcase_13 AC 40 ms
53,264 KB
testcase_14 AC 42 ms
53,264 KB
testcase_15 AC 42 ms
53,892 KB
testcase_16 AC 41 ms
53,216 KB
testcase_17 AC 41 ms
52,824 KB
testcase_18 AC 41 ms
53,812 KB
testcase_19 AC 41 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
# tの値を決めればsは一意に決まる→二分探索
if N == 0:
    print('YES')
    exit()
def is_ok(arg):
    val = 0
    bia = bin(arg)[2:]
    for j in range(1,len(bia)+1):
        val += int(bia[:j],2)
    return N <= val
 
 
def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
arg = meguru_bisect(0,10**10)
val = 0
bia = bin(arg)[2:]
for j in range(1,len(bia)+1):
    val += int(bia[:j],2)
print('YES' if val == N else 'NO')


0