結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
254,116 KB
testcase_01 AC 409 ms
252,852 KB
testcase_02 AC 409 ms
252,844 KB
testcase_03 AC 419 ms
252,824 KB
testcase_04 AC 416 ms
253,192 KB
testcase_05 AC 424 ms
253,096 KB
testcase_06 AC 424 ms
253,560 KB
testcase_07 AC 423 ms
252,800 KB
testcase_08 AC 417 ms
253,228 KB
testcase_09 AC 409 ms
253,176 KB
testcase_10 AC 408 ms
253,976 KB
testcase_11 AC 409 ms
254,104 KB
testcase_12 AC 409 ms
253,212 KB
testcase_13 AC 409 ms
253,092 KB
testcase_14 AC 408 ms
254,116 KB
testcase_15 AC 408 ms
252,700 KB
testcase_16 AC 410 ms
252,956 KB
testcase_17 AC 409 ms
253,564 KB
testcase_18 AC 408 ms
252,956 KB
testcase_19 AC 409 ms
252,976 KB
testcase_20 AC 410 ms
252,920 KB
testcase_21 AC 407 ms
253,080 KB
testcase_22 AC 410 ms
254,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

main()
0