結果

問題 No.143 豆
ユーザー Kentaro YanoKentaro Yano
提出日時 2021-03-29 18:11:10
言語 PHP
(843.2)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 31,068 KB
実行使用メモリ 31,596 KB
最終ジャッジ日時 2024-11-29 10:22:59
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,568 KB
testcase_01 AC 43 ms
31,040 KB
testcase_02 AC 43 ms
31,272 KB
testcase_03 AC 43 ms
31,096 KB
testcase_04 AC 43 ms
31,288 KB
testcase_05 AC 43 ms
30,924 KB
testcase_06 AC 43 ms
31,440 KB
testcase_07 AC 42 ms
31,016 KB
testcase_08 AC 43 ms
31,188 KB
testcase_09 AC 42 ms
31,560 KB
testcase_10 AC 42 ms
31,468 KB
testcase_11 AC 44 ms
31,564 KB
testcase_12 AC 43 ms
30,924 KB
testcase_13 AC 43 ms
31,356 KB
testcase_14 AC 42 ms
31,148 KB
testcase_15 AC 42 ms
31,316 KB
testcase_16 AC 43 ms
31,596 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    while($line = fgets(STDIN)){
        $tmp[] = $line;
    }
    
    foreach($tmp as $val){
        $array[] = explode(" ", $val);
    }
    
    // $array[0]は粒、袋、人数
    // $array[1]は 年齢
    $sum = $array[0][0] * $array[0][1];
    
    for($i=0; $i<$array[0][2]; $i++){
        $sum -= $array[1][$i];
    }
    
    if($sum >= 0){
         echo $sum;
    }else{
        echo -1;
    }
   
?>
0