結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー michirumichiru
提出日時 2019-10-22 17:00:39
言語 PHP
(8.3.4)
結果
AC  
実行時間 115 ms / 3,000 ms
コード長 169 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 31,760 KB
実行使用メモリ 31,116 KB
最終ジャッジ日時 2024-07-04 04:05:16
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,948 KB
testcase_01 AC 33 ms
30,844 KB
testcase_02 AC 34 ms
30,724 KB
testcase_03 AC 34 ms
30,644 KB
testcase_04 AC 36 ms
31,092 KB
testcase_05 AC 34 ms
31,116 KB
testcase_06 AC 34 ms
30,612 KB
testcase_07 AC 36 ms
30,776 KB
testcase_08 AC 43 ms
30,776 KB
testcase_09 AC 52 ms
30,684 KB
testcase_10 AC 99 ms
30,848 KB
testcase_11 AC 103 ms
30,608 KB
testcase_12 AC 105 ms
30,944 KB
testcase_13 AC 112 ms
30,704 KB
testcase_14 AC 107 ms
31,108 KB
testcase_15 AC 108 ms
30,796 KB
testcase_16 AC 115 ms
30,896 KB
testcase_17 AC 36 ms
31,028 KB
testcase_18 AC 36 ms
30,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Your code here!
$nol = trim(fgets(STDIN));
$total = 0;
for ($i=1; $i <= $nol; $i++) {
    $input = trim(fgets(STDIN));
    $total += $input;
}

echo $total;

?>
0