結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー mahnamahna
提出日時 2020-05-09 11:22:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 123 ms / 3,000 ms
コード長 150 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 30,708 KB
実行使用メモリ 31,032 KB
最終ジャッジ日時 2024-07-05 08:15:03
合計ジャッジ時間 2,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,808 KB
testcase_01 AC 40 ms
31,032 KB
testcase_02 AC 40 ms
30,856 KB
testcase_03 AC 40 ms
30,656 KB
testcase_04 AC 41 ms
30,504 KB
testcase_05 AC 41 ms
30,812 KB
testcase_06 AC 41 ms
30,896 KB
testcase_07 AC 42 ms
30,896 KB
testcase_08 AC 48 ms
30,908 KB
testcase_09 AC 58 ms
30,592 KB
testcase_10 AC 109 ms
30,824 KB
testcase_11 AC 112 ms
30,532 KB
testcase_12 AC 115 ms
30,836 KB
testcase_13 AC 115 ms
30,604 KB
testcase_14 AC 116 ms
30,712 KB
testcase_15 AC 118 ms
30,480 KB
testcase_16 AC 123 ms
30,684 KB
testcase_17 AC 40 ms
30,592 KB
testcase_18 AC 40 ms
30,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $ct = trim(fgets(STDIN));
    
    $ans = 0;
    for($i = 0; $i < $ct; $i++) {
        $ans += trim(fgets(STDIN));
    }

    echo $ans;
?>
0