結果

問題 No.1940 Escape through + -
ユーザー SKSK
提出日時 2023-01-16 17:35:28
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 38,712 KB
最終ジャッジ日時 2024-06-09 23:56:59
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
32,272 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 36 ms
32,144 KB
testcase_12 AC 35 ms
32,272 KB
testcase_13 AC 36 ms
32,272 KB
testcase_14 AC 35 ms
32,272 KB
testcase_15 WA -
testcase_16 AC 35 ms
32,404 KB
testcase_17 WA -
testcase_18 AC 34 ms
32,276 KB
testcase_19 WA -
testcase_20 AC 38 ms
32,276 KB
testcase_21 AC 39 ms
32,272 KB
testcase_22 AC 36 ms
32,276 KB
testcase_23 WA -
testcase_24 AC 52 ms
38,584 KB
testcase_25 WA -
testcase_26 AC 48 ms
38,460 KB
testcase_27 AC 53 ms
38,460 KB
testcase_28 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$n,$m,$s] = explode(" ",trim(fgets(STDIN)));
$a = explode(" ",trim(fgets(STDIN)));
$count = 0;

for ($i = 0; $i < $n; $i++) {
     $count += $a[$i];
}

if (($s-$count)/$m == 0) {
    echo "Yes";
}else {
    echo "No";
}

?>
0