結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-14 08:42:32
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 192 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 30,868 KB
実行使用メモリ 31,332 KB
最終ジャッジ日時 2024-07-06 03:33:45
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
30,788 KB
testcase_01 AC 34 ms
30,720 KB
testcase_02 AC 33 ms
31,056 KB
testcase_03 AC 32 ms
30,796 KB
testcase_04 AC 33 ms
30,848 KB
testcase_05 AC 32 ms
31,088 KB
testcase_06 AC 32 ms
31,176 KB
testcase_07 AC 32 ms
31,148 KB
testcase_08 AC 32 ms
31,032 KB
testcase_09 AC 32 ms
31,052 KB
testcase_10 AC 32 ms
31,200 KB
testcase_11 AC 32 ms
31,012 KB
testcase_12 AC 32 ms
31,072 KB
testcase_13 AC 32 ms
30,736 KB
testcase_14 AC 34 ms
31,308 KB
testcase_15 AC 36 ms
30,936 KB
testcase_16 AC 32 ms
30,912 KB
testcase_17 AC 34 ms
31,332 KB
testcase_18 AC 32 ms
31,064 KB
testcase_19 AC 32 ms
30,744 KB
testcase_20 AC 33 ms
31,084 KB
testcase_21 AC 32 ms
31,184 KB
testcase_22 AC 32 ms
30,732 KB
testcase_23 AC 33 ms
30,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$max = trim(fgets(STDIN));
$n = 1;
$hit = 0;
while ( $n < $max ) {
	if ( ($n*2) > $max ) {
		while ( ($n*2) <= $max) {
			$n--;
			$max--;
		}
	}
	$n *= 2;
	$hit++;
}
echo $hit.PHP_EOL;
0