結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー firiexpfiriexp
提出日時 2019-08-19 20:39:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 363 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 13,887 ms
コンパイル使用メモリ 432,340 KB
実行使用メモリ 51,560 KB
最終ジャッジ日時 2024-07-22 16:48:04
合計ジャッジ時間 25,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
51,500 KB
testcase_01 AC 340 ms
51,320 KB
testcase_02 AC 340 ms
51,536 KB
testcase_03 AC 363 ms
51,376 KB
testcase_04 AC 358 ms
51,512 KB
testcase_05 AC 352 ms
51,540 KB
testcase_06 AC 345 ms
51,356 KB
testcase_07 AC 348 ms
51,276 KB
testcase_08 AC 350 ms
51,476 KB
testcase_09 AC 358 ms
51,556 KB
testcase_10 AC 344 ms
51,464 KB
testcase_11 AC 348 ms
51,440 KB
testcase_12 AC 348 ms
51,440 KB
testcase_13 AC 351 ms
51,408 KB
testcase_14 AC 340 ms
51,452 KB
testcase_15 AC 347 ms
51,504 KB
testcase_16 AC 350 ms
51,344 KB
testcase_17 AC 346 ms
51,368 KB
testcase_18 AC 346 ms
51,368 KB
testcase_19 AC 341 ms
51,316 KB
testcase_20 AC 335 ms
51,332 KB
testcase_21 AC 338 ms
51,352 KB
testcase_22 AC 343 ms
51,392 KB
testcase_23 AC 346 ms
51,560 KB
testcase_24 AC 351 ms
51,232 KB
testcase_25 AC 346 ms
51,244 KB
testcase_26 AC 357 ms
51,380 KB
testcase_27 AC 348 ms
51,476 KB
testcase_28 AC 344 ms
51,376 KB
testcase_29 AC 344 ms
51,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.math.BigDecimal

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    var ans = BigDecimal(0)
    for (i in 0 until n){
        ans += readLine()!!.toBigDecimal()
    }
    println("%.10f".format(ans))
}
0