結果

問題 No.2063 ±2^k operations (easy)
ユーザー 👑 H20H20
提出日時 2022-09-02 22:06:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-04-27 21:40:08
合計ジャッジ時間 2,136 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,580 KB
testcase_01 AC 39 ms
52,580 KB
testcase_02 AC 39 ms
53,424 KB
testcase_03 AC 40 ms
52,812 KB
testcase_04 AC 39 ms
52,008 KB
testcase_05 AC 39 ms
51,624 KB
testcase_06 AC 39 ms
51,996 KB
testcase_07 AC 38 ms
52,952 KB
testcase_08 AC 39 ms
52,784 KB
testcase_09 AC 39 ms
53,620 KB
testcase_10 AC 41 ms
52,292 KB
testcase_11 AC 44 ms
53,596 KB
testcase_12 AC 40 ms
53,160 KB
testcase_13 AC 39 ms
53,136 KB
testcase_14 AC 38 ms
52,648 KB
testcase_15 AC 39 ms
52,008 KB
testcase_16 AC 40 ms
51,744 KB
testcase_17 AC 41 ms
52,612 KB
testcase_18 AC 44 ms
52,772 KB
testcase_19 AC 40 ms
53,804 KB
testcase_20 AC 41 ms
53,284 KB
testcase_21 AC 40 ms
53,088 KB
testcase_22 AC 41 ms
53,384 KB
testcase_23 AC 42 ms
52,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = input()
if N.count('1')==1:
    print('No')
    exit()
if N.count('1')==2:
    print('Yes')
    exit()
v = 2**len(N)-int(N, 2)
p2 = math.log2(v)
if v==2**int(p2):
    print('Yes')
else:
    print('No')
0