結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー steinnsteinn
提出日時 2023-07-16 17:31:41
言語 Julia
(2.11.2)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 244,796 KB
最終ジャッジ日時 2024-12-25 21:15:39
合計ジャッジ時間 9,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
243,700 KB
testcase_01 AC 308 ms
243,640 KB
testcase_02 AC 300 ms
243,644 KB
testcase_03 AC 298 ms
243,644 KB
testcase_04 AC 294 ms
243,388 KB
testcase_05 AC 292 ms
244,412 KB
testcase_06 AC 295 ms
243,896 KB
testcase_07 AC 292 ms
244,796 KB
testcase_08 AC 286 ms
244,536 KB
testcase_09 AC 295 ms
244,288 KB
testcase_10 AC 297 ms
244,032 KB
testcase_11 AC 291 ms
244,796 KB
testcase_12 AC 297 ms
243,256 KB
testcase_13 AC 314 ms
243,772 KB
testcase_14 AC 311 ms
243,568 KB
testcase_15 AC 298 ms
244,540 KB
testcase_16 AC 293 ms
244,024 KB
testcase_17 AC 304 ms
243,768 KB
testcase_18 AC 310 ms
244,412 KB
testcase_19 AC 313 ms
243,640 KB
testcase_20 AC 309 ms
243,644 KB
testcase_21 AC 294 ms
243,648 KB
testcase_22 AC 309 ms
243,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

main()
0