結果

問題 No.51 やる気の問題
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-15 12:56:32
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 31,492 KB
最終ジャッジ日時 2024-07-06 03:55:24
合計ジャッジ時間 1,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
31,152 KB
testcase_01 AC 33 ms
31,260 KB
testcase_02 AC 32 ms
31,072 KB
testcase_03 AC 32 ms
31,420 KB
testcase_04 AC 33 ms
31,332 KB
testcase_05 AC 37 ms
31,268 KB
testcase_06 AC 35 ms
30,980 KB
testcase_07 AC 35 ms
31,032 KB
testcase_08 AC 34 ms
31,216 KB
testcase_09 AC 38 ms
31,292 KB
testcase_10 AC 34 ms
31,376 KB
testcase_11 AC 33 ms
31,112 KB
testcase_12 AC 34 ms
31,136 KB
testcase_13 AC 34 ms
31,388 KB
testcase_14 AC 33 ms
31,168 KB
testcase_15 AC 35 ms
31,096 KB
testcase_16 AC 33 ms
31,492 KB
testcase_17 AC 31 ms
30,860 KB
testcase_18 AC 35 ms
31,188 KB
testcase_19 AC 35 ms
30,920 KB
testcase_20 AC 34 ms
30,976 KB
testcase_21 AC 32 ms
31,288 KB
testcase_22 AC 37 ms
31,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$work = trim(fgets(STDIN));
$day = trim(fgets(STDIN));
for ( $i=$day; $i>1; $i-- ) {
	$work -= floor($work/pow($i,2));
}
echo $work.PHP_EOL;
0