結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー steinnsteinn
提出日時 2023-07-15 19:07:24
言語 Julia
(1.10.2)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 251,956 KB
最終ジャッジ日時 2024-04-09 14:17:28
合計ジャッジ時間 8,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
247,628 KB
testcase_01 AC 301 ms
247,816 KB
testcase_02 AC 306 ms
247,364 KB
testcase_03 AC 305 ms
247,716 KB
testcase_04 AC 304 ms
248,108 KB
testcase_05 AC 306 ms
246,936 KB
testcase_06 AC 302 ms
247,508 KB
testcase_07 AC 301 ms
249,684 KB
testcase_08 AC 304 ms
247,636 KB
testcase_09 AC 300 ms
248,132 KB
testcase_10 AC 300 ms
247,752 KB
testcase_11 AC 303 ms
251,956 KB
testcase_12 AC 302 ms
247,676 KB
testcase_13 AC 304 ms
249,928 KB
testcase_14 AC 303 ms
247,280 KB
testcase_15 AC 301 ms
247,352 KB
testcase_16 AC 303 ms
247,148 KB
testcase_17 AC 299 ms
247,180 KB
testcase_18 AC 305 ms
251,844 KB
testcase_19 AC 303 ms
247,584 KB
testcase_20 AC 304 ms
247,260 KB
testcase_21 AC 303 ms
247,468 KB
testcase_22 AC 302 ms
247,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

function main()
    s = parse.(Int64, split(readline(), ""))
    println(sum(s))
end

main()
0