結果

問題 No.51 やる気の問題
ユーザー beatdjambeatdjam
提出日時 2016-10-03 15:38:49
言語 PHP
(8.3.4)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 30,948 KB
実行使用メモリ 31,476 KB
最終ジャッジ日時 2024-11-21 15:17:43
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,144 KB
testcase_01 AC 41 ms
31,248 KB
testcase_02 AC 42 ms
31,132 KB
testcase_03 AC 42 ms
31,476 KB
testcase_04 AC 42 ms
31,464 KB
testcase_05 AC 46 ms
31,412 KB
testcase_06 AC 45 ms
31,268 KB
testcase_07 AC 45 ms
31,392 KB
testcase_08 AC 44 ms
31,276 KB
testcase_09 AC 48 ms
30,992 KB
testcase_10 AC 44 ms
31,176 KB
testcase_11 AC 44 ms
31,120 KB
testcase_12 AC 45 ms
31,256 KB
testcase_13 AC 45 ms
31,440 KB
testcase_14 AC 45 ms
31,000 KB
testcase_15 AC 47 ms
31,140 KB
testcase_16 AC 44 ms
31,248 KB
testcase_17 AC 43 ms
31,288 KB
testcase_18 AC 48 ms
31,144 KB
testcase_19 AC 48 ms
31,176 KB
testcase_20 AC 46 ms
30,936 KB
testcase_21 AC 42 ms
31,092 KB
testcase_22 AC 49 ms
31,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$input_lines = trim(fgets(STDIN));
$input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines);
do {
    $tmpStr[] = $input_lines;
    $input_lines = trim(fgets(STDIN));
    $input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines);
} while ($input_lines !== "");

$work = (int)$tmpStr[0];
$day = (int)$tmpStr[1];

while($day > 0){
	$todayWork = floor($work / pow($day,2));
	$work -= $todayWork;
	if($day == 1){
		echo $todayWork;
		break;
	}
	$day--;
}
// your code goes here
0