結果

問題 No.169 何分かかるの!?
ユーザー ayaaya
提出日時 2019-07-29 11:45:51
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 1,273 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 31,396 KB
最終ジャッジ日時 2024-07-02 15:14:56
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,160 KB
testcase_01 AC 36 ms
31,160 KB
testcase_02 AC 37 ms
31,116 KB
testcase_03 AC 38 ms
31,016 KB
testcase_04 AC 37 ms
31,160 KB
testcase_05 AC 36 ms
31,320 KB
testcase_06 AC 35 ms
30,876 KB
testcase_07 AC 35 ms
30,996 KB
testcase_08 AC 34 ms
31,012 KB
testcase_09 AC 34 ms
30,912 KB
testcase_10 AC 35 ms
31,004 KB
testcase_11 AC 33 ms
31,104 KB
testcase_12 AC 34 ms
31,396 KB
testcase_13 AC 35 ms
31,264 KB
testcase_14 AC 34 ms
31,008 KB
testcase_15 AC 34 ms
31,148 KB
testcase_16 AC 33 ms
31,304 KB
testcase_17 AC 35 ms
31,060 KB
testcase_18 AC 33 ms
31,252 KB
testcase_19 AC 34 ms
31,324 KB
testcase_20 AC 35 ms
31,108 KB
testcase_21 AC 35 ms
30,880 KB
testcase_22 AC 35 ms
31,016 KB
testcase_23 AC 34 ms
31,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/**
 * No.169 何分かかるの!?
 * 問題文
 *ゆきこちゃんは、大きなサイズのファイルをコピーをしようとしています。
 *
 *コピーに時間がかかるので、しばらくして確認すると
 *「K%完了しました。あとS分かかります。」
 *と表示されていました。
 *
 *ゆきこちゃんは、このファイルコピーに全体で何分かかるか知りたくなりましたが、
 *算数が苦手なので、計算することができません。
 *
 *あなたは、ゆきこちゃんの代わりに全体の処理時間(分)を計算してあげてください。
 *答えは、小数部分の切り捨てをし、整数部分のみを答えてください。
 *
 *時間あたりのコピーの速さは、一定であると仮定する。
 *ゆきこちゃんの見た完了のパーセンテージは小数も表示されるが、ちょうど整数になっていたタイミングであると仮定して良い。
 *入力
 *K
 *S
 *入力はすべて整数で与えられる。
 *1≤K≤99
 *1≤S≤1000000=106
 *
 *Kは%単位であることに注意
 */
$compPer=trim(fgets(STDIN));
$remaMin=trim(fgets(STDIN));
$allMin=floor((float)($remaMin/(100-$compPer)*100));
echo $allMin;


?>
0