結果

問題 No.1389 Clumsy Calculation
ユーザー leetcoincollectorleetcoincollector
提出日時 2021-03-12 17:04:26
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 12,929 ms
コンパイル使用メモリ 431,504 KB
実行使用メモリ 81,308 KB
最終ジャッジ日時 2024-10-14 03:55:21
合計ジャッジ時間 29,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (N, X) = readLine()!!.split(" ").map{it.toLong()}
    val a = readLine()!!.split(" ").map{it.toLong()}.sum()
   val ans = a - (N - 1) * X
   println(ans)
}
0