結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー KatoKato
提出日時 2023-06-07 22:46:14
言語 Bash
(Bash 5.1.16)
結果
WA  
実行時間 -
コード長 73 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-06-09 14:12:12
合計ジャッジ時間 4,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
10,528 KB
testcase_01 AC 12 ms
9,796 KB
testcase_02 AC 8 ms
8,860 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

read n;
read s;
echo $s | xargs -n1 | awk 'BEGIN{a=0}{a+=$1}END{print a}'
0