結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー EnglishStudytwiEnglishStudytwi
提出日時 2015-05-15 22:23:58
言語 PHP
(8.3.4)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 204 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,520 KB
最終ジャッジ日時 2024-07-06 04:00:04
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,008 KB
testcase_01 AC 33 ms
31,520 KB
testcase_02 AC 33 ms
31,348 KB
testcase_03 AC 33 ms
31,388 KB
testcase_04 AC 33 ms
31,008 KB
testcase_05 AC 32 ms
31,152 KB
testcase_06 AC 32 ms
31,112 KB
testcase_07 AC 33 ms
31,148 KB
testcase_08 AC 33 ms
31,240 KB
testcase_09 AC 32 ms
30,968 KB
testcase_10 AC 32 ms
30,956 KB
testcase_11 AC 32 ms
30,884 KB
testcase_12 AC 31 ms
31,244 KB
testcase_13 AC 32 ms
31,300 KB
testcase_14 AC 31 ms
31,420 KB
testcase_15 AC 32 ms
31,368 KB
testcase_16 AC 32 ms
31,348 KB
testcase_17 AC 32 ms
31,424 KB
testcase_18 AC 32 ms
31,204 KB
testcase_19 AC 31 ms
31,292 KB
testcase_20 AC 31 ms
30,916 KB
testcase_21 AC 32 ms
31,148 KB
testcase_22 AC 32 ms
30,912 KB
testcase_23 AC 32 ms
31,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$f = 1;
for($i = 0; $f < $n; $i++){
    if( ($f * 2) > $n){
        while( ($f * 2) <= $n){
            $f--;
            $n--;
        }
    }
    $f *= 2;
}

echo $i."\n";
0