結果

問題 No.589 Counting Even
ユーザー ああいいああいい
提出日時 2022-05-17 20:54:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 75 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 53,492 KB
最終ジャッジ日時 2024-09-15 16:10:52
合計ジャッジ時間 2,731 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,696 KB
testcase_01 AC 38 ms
53,156 KB
testcase_02 AC 39 ms
52,824 KB
testcase_03 AC 38 ms
53,224 KB
testcase_04 AC 39 ms
52,260 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 AC 42 ms
53,084 KB
testcase_07 AC 39 ms
52,772 KB
testcase_08 AC 39 ms
51,812 KB
testcase_09 AC 38 ms
53,216 KB
testcase_10 AC 38 ms
52,060 KB
testcase_11 AC 39 ms
52,372 KB
testcase_12 AC 39 ms
52,212 KB
testcase_13 AC 39 ms
52,140 KB
testcase_14 AC 38 ms
52,280 KB
testcase_15 AC 38 ms
52,340 KB
testcase_16 AC 38 ms
53,492 KB
testcase_17 AC 39 ms
51,936 KB
testcase_18 AC 38 ms
52,756 KB
testcase_19 AC 38 ms
52,264 KB
testcase_20 AC 38 ms
52,016 KB
testcase_21 AC 39 ms
51,856 KB
testcase_22 AC 38 ms
53,296 KB
testcase_23 AC 38 ms
52,756 KB
testcase_24 AC 38 ms
51,624 KB
testcase_25 AC 37 ms
52,344 KB
testcase_26 AC 39 ms
51,992 KB
testcase_27 AC 39 ms
52,944 KB
testcase_28 AC 39 ms
52,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

one = bin(N).count('1')
ans = N + 1 - 2 ** one
print(ans)
0