結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー dashi_dragons
提出日時 2017-02-10 18:11:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-26 18:25:26
合計ジャッジ時間 2,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 4 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def check_range(a,b,x):
	if a > x or b < x:
		sys.exit()

def check_eq(a,b):
	if a != b:
		sys.exit()

def cal(x):
	if x == 1:
		return 0

	elif x == 2:
		return 1

	elif x % 2 == 1:
		buf = cal(x // 2) + 2

		return buf
	
	else:
		buf = cal(x // 2) + 1

		return buf

N = int(input())
check_range(1,100000000,N)

print(cal(N))
0