結果

問題 No.1869 Doubling?
ユーザー prussian_coderprussian_coder
提出日時 2022-03-19 14:10:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 177,100 KB
最終ジャッジ日時 2024-10-04 13:16:28
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,504 KB
testcase_01 AC 32 ms
52,412 KB
testcase_02 AC 33 ms
52,720 KB
testcase_03 AC 44 ms
87,968 KB
testcase_04 AC 61 ms
146,784 KB
testcase_05 AC 61 ms
149,816 KB
testcase_06 AC 33 ms
52,692 KB
testcase_07 AC 32 ms
52,420 KB
testcase_08 AC 33 ms
52,124 KB
testcase_09 AC 33 ms
53,076 KB
testcase_10 AC 32 ms
53,092 KB
testcase_11 WA -
testcase_12 AC 32 ms
52,744 KB
testcase_13 WA -
testcase_14 AC 33 ms
52,688 KB
testcase_15 AC 32 ms
51,872 KB
testcase_16 AC 33 ms
52,072 KB
testcase_17 AC 32 ms
51,908 KB
testcase_18 AC 36 ms
52,192 KB
testcase_19 AC 33 ms
52,812 KB
testcase_20 AC 33 ms
53,312 KB
testcase_21 AC 34 ms
52,824 KB
testcase_22 AC 34 ms
52,936 KB
testcase_23 AC 33 ms
52,736 KB
testcase_24 AC 68 ms
176,872 KB
testcase_25 AC 66 ms
176,284 KB
testcase_26 AC 65 ms
176,412 KB
testcase_27 AC 64 ms
177,100 KB
testcase_28 AC 65 ms
176,368 KB
testcase_29 AC 67 ms
176,508 KB
testcase_30 AC 70 ms
176,228 KB
testcase_31 AC 69 ms
177,088 KB
testcase_32 AC 68 ms
175,968 KB
testcase_33 AC 35 ms
52,688 KB
testcase_34 AC 32 ms
53,012 KB
testcase_35 AC 33 ms
52,968 KB
testcase_36 AC 35 ms
52,360 KB
testcase_37 AC 35 ms
52,216 KB
testcase_38 AC 35 ms
53,288 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 65 ms
176,884 KB
testcase_43 AC 65 ms
176,404 KB
testcase_44 AC 33 ms
52,352 KB
testcase_45 AC 32 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
ans=0
P=0
X=K
if 2**N<=K:
	for i in range(N):
		ans+=2**i
	print(ans)
else:
	
	while P<N:
		ans+=X
		if X%2!=0:
			X+=1
		X//=2
		P+=1
		if X==1:
			break
	print(ans+N-P)	
0