結果

問題 No.143 豆
ユーザー sanaodesusanaodesu
提出日時 2021-05-20 22:34:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 154 bytes
コンパイル時間 4,343 ms
コンパイル使用メモリ 30,552 KB
実行使用メモリ 31,268 KB
最終ジャッジ日時 2024-10-10 07:20:25
合計ジャッジ時間 1,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
31,220 KB
testcase_01 AC 43 ms
30,932 KB
testcase_02 AC 42 ms
30,968 KB
testcase_03 AC 42 ms
30,964 KB
testcase_04 AC 41 ms
30,852 KB
testcase_05 AC 41 ms
30,704 KB
testcase_06 AC 41 ms
30,948 KB
testcase_07 AC 41 ms
31,164 KB
testcase_08 AC 41 ms
30,816 KB
testcase_09 AC 41 ms
30,852 KB
testcase_10 AC 42 ms
30,944 KB
testcase_11 AC 41 ms
31,232 KB
testcase_12 AC 42 ms
31,236 KB
testcase_13 AC 42 ms
31,240 KB
testcase_14 AC 42 ms
31,268 KB
testcase_15 AC 41 ms
30,952 KB
testcase_16 AC 42 ms
30,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN,"%d %d %d",$a,$b,$c);
$n=explode(' ',trim(fgets(STDIN)));

$sum=array_sum($n);

$res= ($a*$b)-$sum;

echo $res>=0? $res : -1 . PHP_EOL;
0