結果

問題 No.63 ポッキーゲーム
ユーザー Ruizi_LuigiRuizi_Luigi
提出日時 2015-11-04 09:01:51
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 223 bytes
コンパイル時間 5,286 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 39,216 KB
最終ジャッジ日時 2024-09-13 12:21:58
合計ジャッジ時間 13,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,400 KB
testcase_01 AC 41 ms
32,276 KB
testcase_02 AC 41 ms
32,276 KB
testcase_03 AC 41 ms
32,528 KB
testcase_04 AC 42 ms
32,272 KB
testcase_05 AC 42 ms
32,372 KB
testcase_06 AC 42 ms
32,400 KB
testcase_07 AC 53 ms
32,396 KB
testcase_08 AC 45 ms
32,400 KB
testcase_09 AC 104 ms
32,272 KB
testcase_10 AC 633 ms
32,212 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

// your code goes here
list($l, $k) = explode(' ', trim(fgets(STDIN)));

$eatin = 0;
$finish = false;
do {
	if ($eatin*2 + $k*2 >= $l) {
		$finish = true;
	} else {
		$eatin += $k;
	}
} while(!$finish);

echo $eatin;
0