結果

問題 No.169 何分かかるの!?
ユーザー kurokitsunekurokitsune
提出日時 2015-03-23 22:45:48
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 150 bytes
コンパイル時間 3,023 ms
コンパイル使用メモリ 30,568 KB
実行使用メモリ 31,272 KB
最終ジャッジ日時 2024-06-29 00:25:23
合計ジャッジ時間 5,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,192 KB
testcase_01 AC 35 ms
30,768 KB
testcase_02 AC 37 ms
31,152 KB
testcase_03 AC 35 ms
31,272 KB
testcase_04 AC 35 ms
31,128 KB
testcase_05 AC 34 ms
31,108 KB
testcase_06 AC 34 ms
30,988 KB
testcase_07 AC 35 ms
30,756 KB
testcase_08 AC 37 ms
31,128 KB
testcase_09 AC 37 ms
30,872 KB
testcase_10 AC 39 ms
31,200 KB
testcase_11 AC 36 ms
30,916 KB
testcase_12 AC 34 ms
31,068 KB
testcase_13 AC 34 ms
30,876 KB
testcase_14 AC 35 ms
31,060 KB
testcase_15 AC 37 ms
31,212 KB
testcase_16 AC 36 ms
31,012 KB
testcase_17 AC 34 ms
31,144 KB
testcase_18 AC 34 ms
30,936 KB
testcase_19 AC 33 ms
30,892 KB
testcase_20 AC 35 ms
31,028 KB
testcase_21 AC 36 ms
30,956 KB
testcase_22 AC 35 ms
31,152 KB
testcase_23 AC 36 ms
31,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$finished = trim(fgets(STDIN));
$remain = trim(fgets(STDIN));

$total_min = floor($remain / ((100 - $finished) / 100));
echo $total_min."\n";
?>
0