結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー hamhamhamham
提出日時 2017-06-13 13:49:19
言語 PHP
(843.2)
結果
AC  
実行時間 135 ms / 3,000 ms
コード長 261 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 31,100 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-12-25 16:10:18
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
31,076 KB
testcase_01 AC 45 ms
31,152 KB
testcase_02 AC 46 ms
31,216 KB
testcase_03 AC 49 ms
31,016 KB
testcase_04 AC 44 ms
31,172 KB
testcase_05 AC 46 ms
31,272 KB
testcase_06 AC 47 ms
31,028 KB
testcase_07 AC 47 ms
31,252 KB
testcase_08 AC 59 ms
31,088 KB
testcase_09 AC 66 ms
31,360 KB
testcase_10 AC 123 ms
31,168 KB
testcase_11 AC 127 ms
31,276 KB
testcase_12 AC 126 ms
31,184 KB
testcase_13 AC 125 ms
31,076 KB
testcase_14 AC 127 ms
31,052 KB
testcase_15 AC 130 ms
31,252 KB
testcase_16 AC 135 ms
31,036 KB
testcase_17 AC 47 ms
31,112 KB
testcase_18 AC 48 ms
30,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
//1行目を読み込む
$line1 = trim(fgets(STDIN));
//2行目以降を読み込む
$sum = 0;
while (true) {
    $line_n = trim(fgets(STDIN));
    if($line_n === null || $line_n === "" ) {
        break;
    }
    $sum += $line_n;
}

printf("{$sum}\n");
0