結果

問題 No.970 数列変換マシン
ユーザー rhincodon66rhincodon66
提出日時 2020-01-17 21:52:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 11,228 ms
コンパイル使用メモリ 439,156 KB
実行使用メモリ 69,588 KB
最終ジャッジ日時 2024-06-25 19:37:29
合計ジャッジ時間 23,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 569 ms
68,280 KB
testcase_01 AC 568 ms
68,328 KB
testcase_02 AC 575 ms
68,236 KB
testcase_03 AC 563 ms
67,168 KB
testcase_04 AC 565 ms
67,172 KB
testcase_05 AC 578 ms
69,588 KB
testcase_06 AC 524 ms
62,824 KB
testcase_07 AC 562 ms
67,052 KB
testcase_08 AC 569 ms
67,244 KB
testcase_09 AC 319 ms
52,064 KB
testcase_10 AC 323 ms
51,976 KB
testcase_11 AC 347 ms
52,524 KB
testcase_12 AC 336 ms
52,112 KB
testcase_13 AC 320 ms
52,168 KB
testcase_14 AC 353 ms
52,412 KB
testcase_15 AC 298 ms
51,832 KB
testcase_16 AC 298 ms
51,872 KB
testcase_17 AC 299 ms
51,820 KB
testcase_18 AC 301 ms
51,920 KB
testcase_19 AC 300 ms
51,728 KB
testcase_20 AC 301 ms
51,816 KB
testcase_21 AC 300 ms
51,788 KB
testcase_22 AC 300 ms
51,576 KB
testcase_23 AC 300 ms
51,736 KB
testcase_24 AC 301 ms
51,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

import java.util.*

fun main(args:Array<String>){
    val n = readLine()!!.toInt()
    val y = readLine()!!.split(" ").map{it.toLong()}
    val sum = y.sum()
    var x = LongArray(n)
    for(i in 0 until n){
        x[i] = sum - y[i] * (n - 1)
    }
    val st = StringBuilder()
    for(i in 0 until n){
        st.append(x[i])
        st.append(' ')
    }
    println(st.toString())
}
0