結果

問題 No.1450 nahco314's First Problem
ユーザー flippergoflippergo
提出日時 2024-11-03 19:08:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-11-03 19:08:47
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,812 KB
testcase_01 AC 33 ms
52,372 KB
testcase_02 AC 32 ms
52,892 KB
testcase_03 AC 33 ms
53,164 KB
testcase_04 AC 32 ms
52,596 KB
testcase_05 AC 33 ms
52,616 KB
testcase_06 AC 35 ms
52,964 KB
testcase_07 AC 34 ms
51,944 KB
testcase_08 AC 34 ms
53,076 KB
testcase_09 AC 34 ms
53,260 KB
testcase_10 AC 37 ms
52,812 KB
testcase_11 AC 38 ms
54,216 KB
testcase_12 AC 37 ms
52,680 KB
testcase_13 AC 37 ms
52,888 KB
testcase_14 AC 37 ms
52,328 KB
testcase_15 AC 37 ms
53,480 KB
testcase_16 AC 34 ms
51,872 KB
testcase_17 AC 34 ms
51,872 KB
testcase_18 AC 33 ms
52,528 KB
testcase_19 AC 34 ms
53,504 KB
testcase_20 AC 34 ms
52,412 KB
testcase_21 AC 35 ms
52,736 KB
testcase_22 AC 35 ms
52,696 KB
testcase_23 AC 34 ms
52,072 KB
testcase_24 AC 34 ms
53,252 KB
testcase_25 AC 34 ms
52,028 KB
testcase_26 AC 37 ms
52,400 KB
testcase_27 AC 34 ms
52,396 KB
testcase_28 AC 33 ms
52,600 KB
testcase_29 AC 33 ms
51,872 KB
testcase_30 AC 33 ms
52,304 KB
testcase_31 AC 37 ms
52,864 KB
testcase_32 AC 35 ms
53,512 KB
testcase_33 AC 34 ms
53,144 KB
testcase_34 AC 33 ms
53,020 KB
testcase_35 AC 34 ms
52,420 KB
testcase_36 AC 37 ms
52,412 KB
testcase_37 AC 38 ms
52,400 KB
testcase_38 AC 38 ms
52,736 KB
testcase_39 AC 36 ms
52,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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