結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー 珀
提出日時 2023-07-16 17:13:27
言語 Julia
(1.10.2)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 242,492 KB
最終ジャッジ日時 2024-10-01 17:28:17
合計ジャッジ時間 8,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
241,724 KB
testcase_01 AC 305 ms
242,108 KB
testcase_02 AC 307 ms
241,976 KB
testcase_03 AC 304 ms
241,472 KB
testcase_04 AC 307 ms
242,492 KB
testcase_05 AC 307 ms
242,104 KB
testcase_06 AC 310 ms
242,108 KB
testcase_07 AC 304 ms
241,212 KB
testcase_08 AC 308 ms
241,848 KB
testcase_09 AC 307 ms
241,856 KB
testcase_10 AC 304 ms
241,852 KB
testcase_11 AC 306 ms
241,472 KB
testcase_12 AC 308 ms
241,856 KB
testcase_13 AC 311 ms
241,468 KB
testcase_14 AC 310 ms
241,984 KB
testcase_15 AC 310 ms
241,856 KB
testcase_16 AC 304 ms
241,464 KB
testcase_17 AC 308 ms
241,468 KB
testcase_18 AC 306 ms
241,852 KB
testcase_19 AC 306 ms
242,036 KB
testcase_20 AC 307 ms
242,360 KB
testcase_21 AC 309 ms
241,464 KB
testcase_22 AC 307 ms
241,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
    sum(c -> parse(Int64, c), readline()::String |> collect) |> println
end

main()

0