結果

問題 No.143 豆
ユーザー Kentaro YanoKentaro Yano
提出日時 2021-03-29 18:11:10
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 31,340 KB
最終ジャッジ日時 2024-05-06 23:31:19
合計ジャッジ時間 1,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,340 KB
testcase_01 AC 35 ms
31,076 KB
testcase_02 AC 34 ms
30,964 KB
testcase_03 AC 36 ms
30,812 KB
testcase_04 AC 37 ms
30,968 KB
testcase_05 AC 38 ms
31,196 KB
testcase_06 AC 35 ms
31,140 KB
testcase_07 AC 35 ms
30,848 KB
testcase_08 AC 33 ms
30,976 KB
testcase_09 AC 35 ms
31,180 KB
testcase_10 AC 33 ms
31,136 KB
testcase_11 AC 33 ms
31,096 KB
testcase_12 AC 33 ms
30,948 KB
testcase_13 AC 33 ms
30,860 KB
testcase_14 AC 34 ms
31,080 KB
testcase_15 AC 34 ms
31,056 KB
testcase_16 AC 33 ms
30,912 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