結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー 123ちょちょ123ちょちょ
提出日時 2020-05-03 22:14:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 31,064 KB
実行使用メモリ 40,676 KB
最終ジャッジ日時 2024-06-23 02:51:00
合計ジャッジ時間 2,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,208 KB
testcase_01 AC 40 ms
31,012 KB
testcase_02 AC 40 ms
31,144 KB
testcase_03 AC 39 ms
31,076 KB
testcase_04 AC 39 ms
31,236 KB
testcase_05 AC 41 ms
30,964 KB
testcase_06 AC 39 ms
31,216 KB
testcase_07 AC 42 ms
31,376 KB
testcase_08 AC 48 ms
34,132 KB
testcase_09 AC 55 ms
35,852 KB
testcase_10 AC 83 ms
39,196 KB
testcase_11 AC 82 ms
39,472 KB
testcase_12 AC 85 ms
39,620 KB
testcase_13 AC 86 ms
39,764 KB
testcase_14 AC 85 ms
39,912 KB
testcase_15 AC 88 ms
39,936 KB
testcase_16 AC 92 ms
40,676 KB
testcase_17 AC 39 ms
31,068 KB
testcase_18 AC 40 ms
30,988 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$a = trim(fgets(STDIN));
$array = explode(' ', trim(fgets(STDIN)));
$sum = 0;
for($i=0;$i<$a;$i++){
    $sum += $array[$i];
}
echo $sum . "\n";
0