結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー mahnamahna
提出日時 2020-05-09 11:13:46
言語 PHP
(8.3.4)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 30,384 KB
実行使用メモリ 40,676 KB
最終ジャッジ日時 2024-07-05 08:03:53
合計ジャッジ時間 3,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,968 KB
testcase_01 AC 38 ms
30,812 KB
testcase_02 AC 40 ms
30,896 KB
testcase_03 AC 41 ms
30,796 KB
testcase_04 AC 39 ms
31,020 KB
testcase_05 AC 40 ms
30,988 KB
testcase_06 AC 41 ms
30,988 KB
testcase_07 AC 41 ms
31,244 KB
testcase_08 AC 47 ms
33,804 KB
testcase_09 AC 49 ms
35,852 KB
testcase_10 AC 66 ms
39,200 KB
testcase_11 AC 67 ms
39,352 KB
testcase_12 AC 66 ms
39,496 KB
testcase_13 AC 65 ms
39,640 KB
testcase_14 AC 67 ms
39,788 KB
testcase_15 AC 69 ms
39,680 KB
testcase_16 AC 71 ms
40,676 KB
testcase_17 AC 39 ms
30,908 KB
testcase_18 AC 39 ms
31,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $ct = trim(fgets(STDIN));
    $num = explode(" ",trim(fgets(STDIN)));
    echo array_sum($num);
?>
0