結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,248 KB
testcase_01 AC 37 ms
31,100 KB
testcase_02 AC 37 ms
31,256 KB
testcase_03 AC 40 ms
31,372 KB
testcase_04 AC 39 ms
31,016 KB
testcase_05 AC 37 ms
31,288 KB
testcase_06 AC 37 ms
31,452 KB
testcase_07 AC 38 ms
31,260 KB
testcase_08 AC 47 ms
31,312 KB
testcase_09 AC 60 ms
30,896 KB
testcase_10 AC 103 ms
31,268 KB
testcase_11 AC 109 ms
31,036 KB
testcase_12 AC 105 ms
31,404 KB
testcase_13 AC 105 ms
31,140 KB
testcase_14 AC 105 ms
31,192 KB
testcase_15 AC 107 ms
31,372 KB
testcase_16 AC 113 ms
31,008 KB
testcase_17 AC 37 ms
31,148 KB
testcase_18 AC 37 ms
31,328 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