結果

問題 No.143 豆
ユーザー SATSUKI-UPDATESATSUKI-UPDATE
提出日時 2022-05-17 17:07:08
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 1,003 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 30,768 KB
実行使用メモリ 31,292 KB
最終ジャッジ日時 2024-09-15 11:55:24
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,068 KB
testcase_01 AC 41 ms
30,936 KB
testcase_02 AC 41 ms
31,132 KB
testcase_03 AC 42 ms
31,056 KB
testcase_04 AC 42 ms
30,812 KB
testcase_05 AC 43 ms
31,292 KB
testcase_06 AC 41 ms
31,192 KB
testcase_07 AC 42 ms
30,888 KB
testcase_08 AC 41 ms
31,116 KB
testcase_09 AC 42 ms
31,076 KB
testcase_10 AC 41 ms
31,096 KB
testcase_11 AC 41 ms
30,892 KB
testcase_12 AC 42 ms
31,176 KB
testcase_13 AC 41 ms
31,140 KB
testcase_14 AC 41 ms
31,032 KB
testcase_15 AC 42 ms
31,084 KB
testcase_16 AC 41 ms
31,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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();
$splitStdIn1 = splitBySpace($stdIn[0]);
$beanCount = $splitStdIn1[0];
$packCount = $splitStdIn1[1];
$familyCount = $splitStdIn1[2];
$remainBeanCount = $beanCount * $packCount;

$familyAges = splitBySpace($stdIn[1]);

foreach ($familyAges as $familyAge){
    $remainBeanCount = $remainBeanCount - $familyAge;
}

if($remainBeanCount < 0){
    echo(-1);
} else {
    echo($remainBeanCount);
}

0