結果

問題 No.1389 Clumsy Calculation
ユーザー face4face4
提出日時 2021-04-10 23:26:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 12,167 ms
コンパイル使用メモリ 433,008 KB
実行使用メモリ 80,052 KB
最終ジャッジ日時 2024-06-26 20:34:13
合計ジャッジ時間 27,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
56,948 KB
testcase_01 AC 303 ms
56,852 KB
testcase_02 AC 307 ms
56,788 KB
testcase_03 AC 362 ms
57,328 KB
testcase_04 AC 382 ms
57,236 KB
testcase_05 AC 376 ms
57,096 KB
testcase_06 AC 367 ms
57,196 KB
testcase_07 AC 370 ms
57,340 KB
testcase_08 AC 313 ms
56,696 KB
testcase_09 AC 575 ms
80,052 KB
testcase_10 AC 502 ms
73,736 KB
testcase_11 AC 356 ms
57,088 KB
testcase_12 AC 356 ms
57,208 KB
testcase_13 AC 358 ms
57,136 KB
testcase_14 AC 544 ms
77,756 KB
testcase_15 AC 546 ms
77,852 KB
testcase_16 AC 547 ms
77,840 KB
testcase_17 AC 558 ms
77,744 KB
testcase_18 AC 562 ms
77,936 KB
testcase_19 AC 550 ms
77,760 KB
testcase_20 AC 554 ms
77,964 KB
testcase_21 AC 554 ms
77,916 KB
testcase_22 AC 554 ms
77,880 KB
testcase_23 AC 551 ms
77,848 KB
testcase_24 AC 550 ms
77,872 KB
testcase_25 AC 553 ms
77,816 KB
testcase_26 AC 541 ms
77,920 KB
testcase_27 AC 543 ms
77,788 KB
testcase_28 AC 550 ms
77,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (n, x) = readLine()!!.split(" ").map { it.toLong() }
    println(readLine()!!.split(" ").sumOf { it.toLong() } - (n - 1) * x)
}
0