結果
問題 | No.47 ポケットを叩くとビスケットが2倍 |
ユーザー |
|
提出日時 | 2016-08-13 18:24:20 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 194 bytes |
コンパイル時間 | 527 ms |
コンパイル使用メモリ | 58,868 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 16:20:12 |
合計ジャッジ時間 | 1,454 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <iostream> #include <cmath> auto main() -> int { int n; std::cin >> n; int required_times = static_cast<int>(std::ceil(std::log2(n))); std::cout << required_times << std::endl; }