結果

問題 No.47 ポケットを叩くとビスケットが2倍
コンテスト
ユーザー zhongcunyonggui57-hue
提出日時 2025-11-19 13:51:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 97 bytes
コンパイル時間 3,347 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2025-11-19 14:30:37
合計ジャッジ時間 2,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 19 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N = int(input())
S = 0
i = 1
count=0
while i <= N :
    i = i*2
    count = count+1
print(count)
0