結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー takimoto111takimoto111
提出日時 2018-04-20 18:39:06
言語 PHP
(8.3.4)
結果
AC  
実行時間 129 ms / 3,000 ms
コード長 306 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-06-27 05:08:36
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
32,400 KB
testcase_01 AC 40 ms
32,272 KB
testcase_02 AC 41 ms
32,400 KB
testcase_03 AC 43 ms
32,272 KB
testcase_04 AC 42 ms
32,272 KB
testcase_05 AC 43 ms
32,400 KB
testcase_06 AC 42 ms
32,276 KB
testcase_07 AC 44 ms
32,400 KB
testcase_08 AC 51 ms
34,232 KB
testcase_09 AC 61 ms
38,328 KB
testcase_10 AC 117 ms
52,796 KB
testcase_11 AC 118 ms
52,924 KB
testcase_12 AC 120 ms
52,536 KB
testcase_13 AC 122 ms
52,796 KB
testcase_14 AC 120 ms
52,792 KB
testcase_15 AC 122 ms
54,716 KB
testcase_16 AC 129 ms
54,840 KB
testcase_17 AC 41 ms
32,268 KB
testcase_18 AC 40 ms
32,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php


// 標準入力を一行ずつ配列に代入します
while ($line = fgets(STDIN)) {
   $tmp[] = trim($line);
}

// 配列を展開
$i = 1;
$num = 0;
foreach ($tmp as $value){
 
 //1行目
 if ($i == 1){
// 1行目以外
 } else {
    
    $num += $value;
     
     
 }
 
 $i++;
}

echo $num;
0