結果
| 問題 | No.47 ポケットを叩くとビスケットが2倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-12-29 16:11:27 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 95 ms / 5,000 ms |
| + 133µs | |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 240 ms |
| コンパイル使用メモリ | 95,824 KB |
| 実行使用メモリ | 84,036 KB |
| 最終ジャッジ日時 | 2026-09-05 07:20:49 |
| 合計ジャッジ時間 | 4,358 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline
N = int(input())
cnt = 0
while pow(2,cnt)<N:
cnt += 1
print(cnt)