結果

問題 No.56 消費税
ユーザー SATSUKI-UPDATESATSUKI-UPDATE
提出日時 2022-05-17 17:17:06
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 792 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 31,068 KB
実行使用メモリ 31,520 KB
最終ジャッジ日時 2024-09-15 12:06:32
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,940 KB
testcase_01 AC 41 ms
31,176 KB
testcase_02 AC 41 ms
30,928 KB
testcase_03 WA -
testcase_04 AC 40 ms
31,284 KB
testcase_05 AC 41 ms
31,276 KB
testcase_06 AC 40 ms
31,412 KB
testcase_07 AC 41 ms
31,016 KB
testcase_08 AC 40 ms
31,280 KB
testcase_09 AC 40 ms
31,020 KB
testcase_10 AC 42 ms
31,256 KB
testcase_11 AC 42 ms
31,124 KB
testcase_12 AC 42 ms
31,520 KB
testcase_13 AC 41 ms
31,288 KB
testcase_14 AC 41 ms
31,188 KB
testcase_15 AC 41 ms
31,520 KB
testcase_16 AC 41 ms
31,360 KB
testcase_17 AC 42 ms
31,112 KB
testcase_18 AC 41 ms
31,056 KB
testcase_19 AC 41 ms
31,356 KB
testcase_20 WA -
testcase_21 AC 42 ms
31,020 KB
testcase_22 AC 41 ms
31,140 KB
testcase_23 AC 42 ms
31,172 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
function getStandardInput()
{
  $array = array();
  while (true) {
    $stdin = fgets(STDIN);
    if ($stdin == "") {
      break;
    }
    $array[] = rtrim($stdin);
  }
  return $array;
}

function splitBySpace($str)
{
  return explode(' ', $str);
}

function bubbleSort($array)
{
    $cnt = count($array);

    for($i=0;$i<$cnt-1;$i++){
        for($j=$i+1;$j<$cnt;$j++){
            if($array[$i]>$array[$j]){
                $tmp = $array[$i];
                $array[$i] = $array[$j];
                $array[$j] = $tmp;
            }
        }
    }
    return $array;
}

$stdIn = getStandardInput();
$splitStdIn0 = splitBySpace($stdIn[0]);
$price = $splitStdIn0[0];
$taxPersentage = $splitStdIn0[1];

$result = ((100 + $taxPersentage)/100) * $price;

echo(floor($result)."\n");


0