結果

問題 No.169 何分かかるの!?
ユーザー papinianuspapinianus
提出日時 2016-06-17 13:52:19
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 94 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 30,580 KB
実行使用メモリ 31,292 KB
最終ジャッジ日時 2024-04-17 23:07:27
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,020 KB
testcase_01 AC 42 ms
31,080 KB
testcase_02 AC 45 ms
30,696 KB
testcase_03 AC 42 ms
30,792 KB
testcase_04 AC 41 ms
31,064 KB
testcase_05 AC 41 ms
30,920 KB
testcase_06 AC 42 ms
31,256 KB
testcase_07 AC 41 ms
30,816 KB
testcase_08 AC 41 ms
31,072 KB
testcase_09 AC 41 ms
31,292 KB
testcase_10 AC 41 ms
30,596 KB
testcase_11 AC 41 ms
31,004 KB
testcase_12 AC 41 ms
30,860 KB
testcase_13 AC 41 ms
30,684 KB
testcase_14 AC 41 ms
30,948 KB
testcase_15 AC 41 ms
30,848 KB
testcase_16 AC 41 ms
31,080 KB
testcase_17 AC 41 ms
31,064 KB
testcase_18 AC 41 ms
31,016 KB
testcase_19 AC 41 ms
31,152 KB
testcase_20 AC 41 ms
30,764 KB
testcase_21 AC 40 ms
30,904 KB
testcase_22 AC 40 ms
30,976 KB
testcase_23 AC 41 ms
31,116 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$k = trim(fgets(STDIN));
$s = trim(fgets(STDIN));
echo floor((100*$s/(100-$k))).PHP_EOL;
0