結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー steinnsteinn
提出日時 2023-07-16 17:31:41
言語 Julia
(1.10.2)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 249,664 KB
最終ジャッジ日時 2024-04-09 14:19:39
合計ジャッジ時間 8,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
248,096 KB
testcase_01 AC 298 ms
249,272 KB
testcase_02 AC 297 ms
249,136 KB
testcase_03 AC 299 ms
246,748 KB
testcase_04 AC 295 ms
247,112 KB
testcase_05 AC 295 ms
247,636 KB
testcase_06 AC 294 ms
246,672 KB
testcase_07 AC 298 ms
248,140 KB
testcase_08 AC 296 ms
249,664 KB
testcase_09 AC 299 ms
246,484 KB
testcase_10 AC 300 ms
247,492 KB
testcase_11 AC 296 ms
249,500 KB
testcase_12 AC 296 ms
246,328 KB
testcase_13 AC 297 ms
246,868 KB
testcase_14 AC 295 ms
247,372 KB
testcase_15 AC 299 ms
247,092 KB
testcase_16 AC 300 ms
246,556 KB
testcase_17 AC 296 ms
247,132 KB
testcase_18 AC 302 ms
246,916 KB
testcase_19 AC 301 ms
246,872 KB
testcase_20 AC 300 ms
247,632 KB
testcase_21 AC 298 ms
246,628 KB
testcase_22 AC 297 ms
247,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

parseInt(str=readline()) = parse.(Int64, split(str))

function main()
    s = parse.(Int64, readline()::String |> collect)
    println(sum(s))
end

main()
0