結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー steinnsteinn
提出日時 2023-07-15 19:09:51
言語 Julia
(2.11.2)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 253,876 KB
最終ジャッジ日時 2024-12-23 13:04:57
合計ジャッジ時間 13,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
252,968 KB
testcase_01 AC 453 ms
253,808 KB
testcase_02 AC 448 ms
252,460 KB
testcase_03 AC 376 ms
253,448 KB
testcase_04 AC 379 ms
252,772 KB
testcase_05 AC 387 ms
253,084 KB
testcase_06 AC 380 ms
253,876 KB
testcase_07 AC 385 ms
252,940 KB
testcase_08 AC 379 ms
252,800 KB
testcase_09 AC 384 ms
253,488 KB
testcase_10 AC 387 ms
252,936 KB
testcase_11 AC 387 ms
252,684 KB
testcase_12 AC 382 ms
253,332 KB
testcase_13 AC 390 ms
253,484 KB
testcase_14 AC 383 ms
252,704 KB
testcase_15 AC 394 ms
253,476 KB
testcase_16 AC 392 ms
252,976 KB
testcase_17 AC 378 ms
252,964 KB
testcase_18 AC 384 ms
253,148 KB
testcase_19 AC 382 ms
253,080 KB
testcase_20 AC 384 ms
252,828 KB
testcase_21 AC 385 ms
252,960 KB
testcase_22 AC 392 ms
253,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

main()
0