結果

問題 No.56 消費税
ユーザー sanaodesusanaodesu
提出日時 2021-05-20 22:38:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 81 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 31,160 KB
実行使用メモリ 31,396 KB
最終ジャッジ日時 2024-10-10 07:20:58
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
31,396 KB
testcase_01 AC 43 ms
31,168 KB
testcase_02 AC 42 ms
31,304 KB
testcase_03 AC 43 ms
30,708 KB
testcase_04 AC 43 ms
30,968 KB
testcase_05 AC 43 ms
31,072 KB
testcase_06 AC 43 ms
31,152 KB
testcase_07 AC 47 ms
31,040 KB
testcase_08 AC 43 ms
30,764 KB
testcase_09 AC 43 ms
30,932 KB
testcase_10 AC 43 ms
30,852 KB
testcase_11 AC 42 ms
31,300 KB
testcase_12 AC 41 ms
31,032 KB
testcase_13 AC 42 ms
31,300 KB
testcase_14 AC 42 ms
31,028 KB
testcase_15 AC 43 ms
31,268 KB
testcase_16 AC 43 ms
31,232 KB
testcase_17 AC 43 ms
30,980 KB
testcase_18 AC 41 ms
30,972 KB
testcase_19 AC 41 ms
30,828 KB
testcase_20 AC 42 ms
30,976 KB
testcase_21 AC 42 ms
31,056 KB
testcase_22 AC 41 ms
30,948 KB
testcase_23 AC 43 ms
31,340 KB
testcase_24 AC 42 ms
31,396 KB
testcase_25 AC 42 ms
30,952 KB
testcase_26 AC 41 ms
31,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN,"%d %d",$a,$b);
$tax=floor($a*$b/100);
echo $a+$tax . PHP_EOL;
0