結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー steinnsteinn
提出日時 2023-07-15 19:07:24
言語 Julia
(1.10.2)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 246,972 KB
最終ジャッジ日時 2024-10-01 17:27:03
合計ジャッジ時間 8,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
246,004 KB
testcase_01 AC 315 ms
245,692 KB
testcase_02 AC 320 ms
245,436 KB
testcase_03 AC 328 ms
246,076 KB
testcase_04 AC 312 ms
246,716 KB
testcase_05 AC 316 ms
245,816 KB
testcase_06 AC 314 ms
245,436 KB
testcase_07 AC 312 ms
245,948 KB
testcase_08 AC 314 ms
246,076 KB
testcase_09 AC 337 ms
245,688 KB
testcase_10 AC 314 ms
246,972 KB
testcase_11 AC 320 ms
246,584 KB
testcase_12 AC 316 ms
245,432 KB
testcase_13 AC 316 ms
245,564 KB
testcase_14 AC 313 ms
246,460 KB
testcase_15 AC 316 ms
245,820 KB
testcase_16 AC 317 ms
246,460 KB
testcase_17 AC 317 ms
246,456 KB
testcase_18 AC 342 ms
246,004 KB
testcase_19 AC 314 ms
246,460 KB
testcase_20 AC 334 ms
246,972 KB
testcase_21 AC 321 ms
246,080 KB
testcase_22 AC 315 ms
245,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

main()
0