結果
問題 | No.1586 Equal Array |
ユーザー | mohu moffu |
提出日時 | 2021-07-14 01:42:09 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 260 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 32,084 KB |
実行使用メモリ | 529,496 KB |
最終ジャッジ日時 | 2024-07-02 22:35:49 |
合計ジャッジ時間 | 3,169 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
30,996 KB |
testcase_02 | AC | 45 ms
30,888 KB |
testcase_03 | AC | 41 ms
31,268 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | MLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php fscanf(STDIN,"%d",$n); $n = (int)trim(fgets(STDIN)); $array = array(); for ($i=0; $i<$n; $i++){ $array[] = (int)trim(fgets(STDIN)); } $total = 0; foreach ($array as $element){ $total += $element; } $ans = ($total % $n) == 0 ? 'Yes' : 'No'; echo $ans;