結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nina1186nina1186
提出日時 2018-04-24 17:48:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 30,908 KB
実行使用メモリ 40,796 KB
最終ジャッジ日時 2024-06-27 16:02:06
合計ジャッジ時間 2,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,188 KB
testcase_01 AC 41 ms
31,016 KB
testcase_02 AC 42 ms
31,052 KB
testcase_03 AC 41 ms
31,360 KB
testcase_04 AC 41 ms
30,868 KB
testcase_05 AC 41 ms
31,196 KB
testcase_06 AC 41 ms
31,260 KB
testcase_07 AC 42 ms
31,376 KB
testcase_08 AC 48 ms
34,060 KB
testcase_09 AC 51 ms
35,980 KB
testcase_10 AC 68 ms
39,192 KB
testcase_11 AC 67 ms
39,468 KB
testcase_12 AC 68 ms
39,620 KB
testcase_13 AC 67 ms
39,756 KB
testcase_14 AC 68 ms
39,912 KB
testcase_15 AC 68 ms
40,060 KB
testcase_16 AC 70 ms
40,796 KB
testcase_17 AC 41 ms
30,952 KB
testcase_18 AC 41 ms
31,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, '%d', $N);
$degits = explode(' ', trim(fgets(STDIN)));
$total = 0;
foreach($degits as $value){
  $total += intval($value);
}

echo $total;
0