結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Kentaro YanoKentaro Yano
提出日時 2021-03-29 17:22:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 274 ms / 3,000 ms
コード長 215 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 169,472 KB
最終ジャッジ日時 2024-05-06 23:17:58
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
30,968 KB
testcase_01 AC 33 ms
31,136 KB
testcase_02 AC 33 ms
31,180 KB
testcase_03 AC 33 ms
31,056 KB
testcase_04 AC 32 ms
31,052 KB
testcase_05 AC 33 ms
30,852 KB
testcase_06 AC 34 ms
30,988 KB
testcase_07 AC 39 ms
33,420 KB
testcase_08 AC 59 ms
44,812 KB
testcase_09 AC 82 ms
59,148 KB
testcase_10 AC 228 ms
141,740 KB
testcase_11 AC 240 ms
144,644 KB
testcase_12 AC 239 ms
147,284 KB
testcase_13 AC 251 ms
150,060 KB
testcase_14 AC 247 ms
152,828 KB
testcase_15 AC 254 ms
155,348 KB
testcase_16 AC 274 ms
169,472 KB
testcase_17 AC 36 ms
31,140 KB
testcase_18 AC 36 ms
31,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

while($line = fgets(STDIN)){
    $tmp[] =  trim($line);
}

foreach($tmp as $val){
 $arr[] = explode(" ", $val);
}

$sum = 0;
for($i=1; $i<=$arr[0][0]; $i++){
    $sum += $arr[$i][0];
}

echo $sum. "\n";



?>
0