結果

問題 No.1450 nahco314's First Problem
ユーザー flippergoflippergo
提出日時 2024-11-03 18:55:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-11-03 18:55:49
合計ジャッジ時間 4,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,740 KB
testcase_01 AC 34 ms
53,056 KB
testcase_02 AC 34 ms
52,744 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,200 KB
testcase_06 AC 34 ms
52,616 KB
testcase_07 AC 35 ms
52,736 KB
testcase_08 AC 35 ms
53,728 KB
testcase_09 AC 36 ms
53,420 KB
testcase_10 AC 35 ms
52,568 KB
testcase_11 AC 33 ms
53,112 KB
testcase_12 AC 35 ms
52,332 KB
testcase_13 AC 34 ms
52,696 KB
testcase_14 AC 34 ms
52,180 KB
testcase_15 AC 33 ms
53,380 KB
testcase_16 AC 34 ms
53,808 KB
testcase_17 AC 34 ms
52,128 KB
testcase_18 AC 34 ms
53,428 KB
testcase_19 AC 36 ms
52,024 KB
testcase_20 AC 37 ms
52,668 KB
testcase_21 AC 37 ms
52,024 KB
testcase_22 AC 37 ms
52,504 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 37 ms
53,752 KB
testcase_25 AC 37 ms
52,572 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 34 ms
52,172 KB
testcase_28 AC 35 ms
52,200 KB
testcase_29 AC 34 ms
52,560 KB
testcase_30 AC 34 ms
52,568 KB
testcase_31 AC 35 ms
52,556 KB
testcase_32 AC 34 ms
52,024 KB
testcase_33 AC 37 ms
52,696 KB
testcase_34 AC 35 ms
53,648 KB
testcase_35 AC 37 ms
53,320 KB
testcase_36 AC 37 ms
52,144 KB
testcase_37 AC 39 ms
52,740 KB
testcase_38 AC 37 ms
52,576 KB
testcase_39 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
binx = bin(X)[2:]
Wmax = len(binx)
flag = -1
for w in range(Wmax+1):
    N = X^w
    binN = bin(N)[2:]
    c = binN.count("1")
    if c==w:
        flag = N
        break
print(flag)
0