結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー hamhamhamham
提出日時 2017-06-13 13:51:17
言語 PHP
(8.3.4)
結果
AC  
実行時間 133 ms / 3,000 ms
コード長 280 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 30,644 KB
実行使用メモリ 30,968 KB
最終ジャッジ日時 2024-06-07 12:43:01
合計ジャッジ時間 2,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,740 KB
testcase_01 AC 37 ms
30,968 KB
testcase_02 AC 38 ms
30,792 KB
testcase_03 AC 37 ms
30,784 KB
testcase_04 AC 38 ms
30,828 KB
testcase_05 AC 37 ms
30,752 KB
testcase_06 AC 37 ms
30,748 KB
testcase_07 AC 39 ms
30,812 KB
testcase_08 AC 47 ms
30,716 KB
testcase_09 AC 59 ms
30,824 KB
testcase_10 AC 116 ms
30,468 KB
testcase_11 AC 121 ms
30,936 KB
testcase_12 AC 124 ms
30,808 KB
testcase_13 AC 123 ms
30,784 KB
testcase_14 AC 122 ms
30,820 KB
testcase_15 AC 130 ms
30,708 KB
testcase_16 AC 133 ms
30,532 KB
testcase_17 AC 39 ms
30,936 KB
testcase_18 AC 39 ms
30,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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

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