結果
問題 | No.970 数列変換マシン |
ユーザー | yakamoto |
提出日時 | 2020-01-17 21:32:20 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 648 ms / 2,000 ms |
コード長 | 1,159 bytes |
コンパイル時間 | 13,786 ms |
コンパイル使用メモリ | 444,996 KB |
実行使用メモリ | 78,488 KB |
最終ジャッジ日時 | 2024-06-25 18:49:29 |
合計ジャッジ時間 | 26,675 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 647 ms
78,024 KB |
testcase_01 | AC | 648 ms
78,008 KB |
testcase_02 | AC | 647 ms
78,060 KB |
testcase_03 | AC | 641 ms
75,808 KB |
testcase_04 | AC | 630 ms
76,284 KB |
testcase_05 | AC | 636 ms
78,488 KB |
testcase_06 | AC | 566 ms
67,368 KB |
testcase_07 | AC | 646 ms
76,144 KB |
testcase_08 | AC | 634 ms
76,480 KB |
testcase_09 | AC | 346 ms
55,636 KB |
testcase_10 | AC | 345 ms
55,684 KB |
testcase_11 | AC | 372 ms
55,952 KB |
testcase_12 | AC | 354 ms
55,788 KB |
testcase_13 | AC | 342 ms
55,608 KB |
testcase_14 | AC | 398 ms
56,176 KB |
testcase_15 | AC | 323 ms
55,360 KB |
testcase_16 | AC | 320 ms
55,248 KB |
testcase_17 | AC | 329 ms
55,248 KB |
testcase_18 | AC | 326 ms
55,108 KB |
testcase_19 | AC | 324 ms
55,140 KB |
testcase_20 | AC | 325 ms
55,124 KB |
testcase_21 | AC | 321 ms
55,348 KB |
testcase_22 | AC | 319 ms
54,948 KB |
testcase_23 | AC | 320 ms
55,132 KB |
testcase_24 | AC | 324 ms
55,124 KB |
ソースコード
import java.lang.Exception import kotlin.math.max import kotlin.math.min val MOD = 1_000_000_007 fun main() { val (N) = readInts() val Y = readInts() val s = Y.sum().toLong() val ans = mutableListOf<Long>() for (i in 0 until N) { val v = (s-Y[i])*(N-1)- s * (N - 2) ans.add(v) } println(ans.joinToString(" ")) } private val isDebug = try { // なんか本番でエラーでる System.getenv("MY_DEBUG") != null } catch (t: Throwable) { false } private fun readLn() = readLine()!! private fun readStrings() = readLn().split(" ") private fun readInts() = readStrings().map { it.toInt() }.toIntArray() private fun readLongs() = readStrings().map { it.toLong() }.toLongArray() private inline fun debug(msg: () -> String) { if (isDebug) System.err.println(msg()) } private fun debug(a: LongArray) { debug{a.joinToString(" ")} } private fun debug(a: IntArray) { debug{a.joinToString(" ")} } private fun debug(a: BooleanArray) { debug{a.map{if(it) 1 else 0}.joinToString("")} } private fun debugDim(A: Array<IntArray>) { if (isDebug) { for (a in A) { debug(a) } } }