結果

問題 No.445 得点
ユーザー papinianuspapinianus
提出日時 2016-12-01 12:40:59
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 1,294 ms
コンパイル使用メモリ 30,756 KB
実行使用メモリ 31,148 KB
最終ジャッジ日時 2024-05-05 16:33:31
合計ジャッジ時間 1,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,112 KB
testcase_01 AC 32 ms
30,960 KB
testcase_02 AC 33 ms
30,764 KB
testcase_03 AC 34 ms
30,668 KB
testcase_04 AC 34 ms
30,724 KB
testcase_05 AC 34 ms
30,660 KB
testcase_06 AC 33 ms
31,056 KB
testcase_07 AC 34 ms
30,880 KB
testcase_08 AC 35 ms
30,636 KB
testcase_09 AC 35 ms
30,828 KB
testcase_10 AC 33 ms
30,868 KB
testcase_11 AC 34 ms
30,924 KB
testcase_12 AC 33 ms
30,940 KB
testcase_13 AC 34 ms
30,892 KB
testcase_14 AC 35 ms
30,956 KB
testcase_15 AC 35 ms
30,744 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 34 ms
30,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($n, $k) = explode(" ", trim(fgets(STDIN)));
$ans = 50 * $n;
$ans += floor(50 * $n / (0.8 + 0.2 * $k));
echo $ans.PHP_EOL;
0