結果

問題 No.1389 Clumsy Calculation
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-12 21:51:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 625 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 13,174 ms
コンパイル使用メモリ 436,372 KB
実行使用メモリ 85,184 KB
最終ジャッジ日時 2024-07-19 21:06:02
合計ジャッジ時間 27,139 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
56,872 KB
testcase_01 AC 292 ms
56,928 KB
testcase_02 AC 289 ms
56,808 KB
testcase_03 AC 345 ms
57,148 KB
testcase_04 AC 351 ms
57,304 KB
testcase_05 AC 362 ms
57,300 KB
testcase_06 AC 347 ms
57,320 KB
testcase_07 AC 348 ms
57,236 KB
testcase_08 AC 287 ms
56,940 KB
testcase_09 AC 625 ms
85,184 KB
testcase_10 AC 509 ms
68,772 KB
testcase_11 AC 335 ms
52,344 KB
testcase_12 AC 339 ms
52,212 KB
testcase_13 AC 329 ms
52,320 KB
testcase_14 AC 562 ms
78,036 KB
testcase_15 AC 540 ms
78,168 KB
testcase_16 AC 557 ms
78,072 KB
testcase_17 AC 556 ms
78,264 KB
testcase_18 AC 543 ms
78,328 KB
testcase_19 AC 548 ms
78,140 KB
testcase_20 AC 546 ms
78,172 KB
testcase_21 AC 545 ms
78,312 KB
testcase_22 AC 547 ms
78,396 KB
testcase_23 AC 587 ms
78,440 KB
testcase_24 AC 564 ms
78,308 KB
testcase_25 AC 579 ms
78,320 KB
testcase_26 AC 609 ms
77,988 KB
testcase_27 AC 616 ms
78,000 KB
testcase_28 AC 600 ms
78,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.collections.*
import kotlin.math.*

@kotlin.ExperimentalStdlibApi
fun main() {
    val (n, x) = readLine()!!.split(" ").map { it.toLong() }
    val s = readLine()!!.split(" ").map { it.toLong() }.sum()

    println((s - x*n + x))
}
0