結果

問題 No.169 何分かかるの!?
ユーザー tazakkytazakky
提出日時 2017-09-11 22:35:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 192 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 31,036 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-04-25 06:55:56
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,008 KB
testcase_01 AC 36 ms
30,924 KB
testcase_02 AC 37 ms
31,024 KB
testcase_03 AC 36 ms
30,828 KB
testcase_04 AC 36 ms
30,900 KB
testcase_05 AC 35 ms
31,000 KB
testcase_06 AC 36 ms
31,152 KB
testcase_07 AC 36 ms
30,952 KB
testcase_08 AC 36 ms
31,104 KB
testcase_09 AC 36 ms
31,224 KB
testcase_10 AC 34 ms
31,300 KB
testcase_11 AC 34 ms
31,108 KB
testcase_12 AC 36 ms
30,960 KB
testcase_13 AC 36 ms
31,044 KB
testcase_14 AC 37 ms
31,016 KB
testcase_15 AC 35 ms
30,916 KB
testcase_16 AC 36 ms
30,804 KB
testcase_17 AC 36 ms
30,912 KB
testcase_18 AC 36 ms
31,144 KB
testcase_19 AC 37 ms
30,836 KB
testcase_20 AC 37 ms
30,832 KB
testcase_21 AC 37 ms
31,224 KB
testcase_22 AC 37 ms
30,848 KB
testcase_23 AC 38 ms
31,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // K%完了しました。あとS分かかります。
    $k = trim(fgets(STDIN));
    $s = trim(fgets(STDIN));
    
    $d = floor($k * $s / (100 - $k));
    echo $d + $s;
    
?>
0