結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー michirumichiru
提出日時 2019-10-21 11:23:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 2,746 ms
コンパイル使用メモリ 30,900 KB
実行使用メモリ 40,924 KB
最終ジャッジ日時 2024-07-02 17:40:25
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,988 KB
testcase_01 AC 41 ms
30,856 KB
testcase_02 AC 41 ms
31,344 KB
testcase_03 AC 41 ms
31,276 KB
testcase_04 AC 41 ms
30,956 KB
testcase_05 AC 41 ms
31,240 KB
testcase_06 AC 41 ms
31,396 KB
testcase_07 AC 42 ms
31,504 KB
testcase_08 AC 47 ms
34,132 KB
testcase_09 AC 53 ms
35,852 KB
testcase_10 AC 70 ms
39,324 KB
testcase_11 AC 71 ms
39,472 KB
testcase_12 AC 72 ms
39,616 KB
testcase_13 AC 73 ms
39,760 KB
testcase_14 AC 73 ms
39,908 KB
testcase_15 AC 74 ms
40,056 KB
testcase_16 AC 76 ms
40,924 KB
testcase_17 AC 40 ms
31,256 KB
testcase_18 AC 41 ms
31,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Your code here!
$N = trim(fgets(STDIN));
$A = explode(" ", trim(fgets(STDIN)));

$total = 0;
foreach ($A as $num) {
    $total += $num;
}

echo $total;

?>
0