結果

問題 No.476 正しくない平均
ユーザー happy-beanshappy-beans
提出日時 2017-03-14 18:55:52
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 31,372 KB
実行使用メモリ 31,580 KB
最終ジャッジ日時 2024-06-30 00:45:30
合計ジャッジ時間 2,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,560 KB
testcase_01 AC 41 ms
31,520 KB
testcase_02 AC 41 ms
31,484 KB
testcase_03 AC 40 ms
31,300 KB
testcase_04 AC 42 ms
31,520 KB
testcase_05 AC 43 ms
31,344 KB
testcase_06 AC 41 ms
31,472 KB
testcase_07 AC 42 ms
31,520 KB
testcase_08 AC 41 ms
31,144 KB
testcase_09 AC 40 ms
31,148 KB
testcase_10 AC 41 ms
31,452 KB
testcase_11 AC 41 ms
31,272 KB
testcase_12 AC 40 ms
31,412 KB
testcase_13 AC 40 ms
31,184 KB
testcase_14 AC 41 ms
31,252 KB
testcase_15 AC 41 ms
31,164 KB
testcase_16 AC 41 ms
31,580 KB
testcase_17 AC 41 ms
31,144 KB
testcase_18 AC 41 ms
31,308 KB
testcase_19 AC 41 ms
31,304 KB
testcase_20 AC 41 ms
31,316 KB
testcase_21 AC 41 ms
31,476 KB
testcase_22 AC 41 ms
31,524 KB
testcase_23 AC 41 ms
31,472 KB
testcase_24 AC 42 ms
31,304 KB
testcase_25 AC 41 ms
31,256 KB
testcase_26 AC 42 ms
31,268 KB
testcase_27 AC 42 ms
31,336 KB
testcase_28 AC 41 ms
31,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

// No.476
$args = explode(" ", trim(fgets(STDIN)));
$n = $args[0];
$a = $args[1];

$args = explode(" ", trim(fgets(STDIN)));
$sum = 0;
foreach ($args as $key => $value) {
  $sum += $value;
}
if (($n * $a) == $sum) {
  echo "YES".PHP_EOL;
}
else {
  echo "NO".PHP_EOL;
}
return;
0