結果

問題 No.169 何分かかるの!?
ユーザー leos_caraxleos_carax
提出日時 2016-10-22 23:01:44
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 91 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,224 KB
最終ジャッジ日時 2024-05-02 22:38:09
合計ジャッジ時間 1,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,836 KB
testcase_01 AC 35 ms
30,892 KB
testcase_02 AC 45 ms
30,984 KB
testcase_03 AC 39 ms
30,968 KB
testcase_04 AC 38 ms
30,948 KB
testcase_05 AC 35 ms
31,060 KB
testcase_06 AC 34 ms
30,932 KB
testcase_07 AC 36 ms
30,824 KB
testcase_08 AC 34 ms
31,076 KB
testcase_09 AC 34 ms
31,000 KB
testcase_10 AC 33 ms
30,896 KB
testcase_11 AC 35 ms
30,712 KB
testcase_12 AC 36 ms
31,008 KB
testcase_13 AC 35 ms
30,768 KB
testcase_14 AC 35 ms
31,224 KB
testcase_15 AC 35 ms
31,088 KB
testcase_16 AC 33 ms
30,832 KB
testcase_17 AC 35 ms
30,776 KB
testcase_18 AC 34 ms
30,764 KB
testcase_19 AC 35 ms
31,128 KB
testcase_20 AC 37 ms
31,092 KB
testcase_21 AC 37 ms
30,888 KB
testcase_22 AC 37 ms
30,872 KB
testcase_23 AC 36 ms
30,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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