結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー steinnsteinn
提出日時 2023-07-16 17:31:41
言語 Julia
(1.10.2)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 246,204 KB
最終ジャッジ日時 2024-10-01 17:28:07
合計ジャッジ時間 8,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
245,056 KB
testcase_01 AC 313 ms
245,308 KB
testcase_02 AC 307 ms
245,180 KB
testcase_03 AC 311 ms
245,312 KB
testcase_04 AC 306 ms
245,056 KB
testcase_05 AC 309 ms
245,696 KB
testcase_06 AC 312 ms
245,436 KB
testcase_07 AC 317 ms
244,920 KB
testcase_08 AC 311 ms
245,564 KB
testcase_09 AC 312 ms
244,924 KB
testcase_10 AC 309 ms
245,308 KB
testcase_11 AC 310 ms
245,304 KB
testcase_12 AC 311 ms
245,312 KB
testcase_13 AC 309 ms
245,308 KB
testcase_14 AC 311 ms
245,304 KB
testcase_15 AC 313 ms
245,692 KB
testcase_16 AC 307 ms
245,436 KB
testcase_17 AC 306 ms
245,440 KB
testcase_18 AC 308 ms
246,076 KB
testcase_19 AC 307 ms
245,176 KB
testcase_20 AC 309 ms
246,204 KB
testcase_21 AC 309 ms
245,564 KB
testcase_22 AC 307 ms
245,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

main()
0