結果

問題 No.2853 A + B Problem
ユーザー ねしんねしん
提出日時 2024-09-18 12:31:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 53,512 KB
最終ジャッジ日時 2024-09-18 12:31:53
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,648 KB
testcase_01 AC 35 ms
52,696 KB
testcase_02 AC 32 ms
51,948 KB
testcase_03 AC 34 ms
52,516 KB
testcase_04 AC 35 ms
52,860 KB
testcase_05 AC 36 ms
51,944 KB
testcase_06 AC 34 ms
52,008 KB
testcase_07 AC 31 ms
52,768 KB
testcase_08 AC 34 ms
52,836 KB
testcase_09 AC 33 ms
52,332 KB
testcase_10 AC 33 ms
52,444 KB
testcase_11 AC 33 ms
52,352 KB
testcase_12 AC 33 ms
52,352 KB
testcase_13 AC 35 ms
52,452 KB
testcase_14 AC 32 ms
52,532 KB
testcase_15 AC 33 ms
52,588 KB
testcase_16 AC 33 ms
52,368 KB
testcase_17 AC 30 ms
51,964 KB
testcase_18 AC 31 ms
51,836 KB
testcase_19 AC 32 ms
53,512 KB
testcase_20 AC 33 ms
52,948 KB
testcase_21 AC 32 ms
51,632 KB
testcase_22 AC 33 ms
52,120 KB
testcase_23 AC 32 ms
52,204 KB
testcase_24 AC 33 ms
52,672 KB
testcase_25 AC 33 ms
52,516 KB
testcase_26 AC 32 ms
52,352 KB
testcase_27 AC 35 ms
51,964 KB
testcase_28 AC 34 ms
51,976 KB
testcase_29 AC 34 ms
52,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
N=bin(N)
cnt=0
for i in range(len(N)):
	if N[i]=="1":
		cnt+=1
print(2**cnt-2)
0