結果

問題 No.1619 Coccinellidae
ユーザー 箱星箱星
提出日時 2021-07-22 22:30:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 1,338 bytes
コンパイル時間 15,131 ms
コンパイル使用メモリ 438,796 KB
実行使用メモリ 67,104 KB
最終ジャッジ日時 2024-07-17 18:40:12
合計ジャッジ時間 23,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
58,160 KB
testcase_01 AC 477 ms
65,032 KB
testcase_02 AC 477 ms
67,016 KB
testcase_03 AC 318 ms
58,076 KB
testcase_04 AC 476 ms
67,104 KB
testcase_05 AC 455 ms
64,932 KB
testcase_06 AC 317 ms
58,176 KB
testcase_07 AC 459 ms
65,068 KB
testcase_08 AC 447 ms
64,916 KB
testcase_09 AC 305 ms
58,040 KB
testcase_10 AC 444 ms
62,888 KB
testcase_11 AC 459 ms
65,108 KB
testcase_12 AC 305 ms
58,172 KB
testcase_13 AC 451 ms
67,016 KB
testcase_14 AC 468 ms
67,072 KB
testcase_15 AC 318 ms
58,164 KB
testcase_16 AC 321 ms
58,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextLong()
    var k = nextLong()
    for (i in 0 until n) {
        if (k <= n - 1 - i) {
            val a = Array(n) { 0L }
            for (j in 0 until i) {
                a[j] = n - 1L - j
            }
            val pos = ((n - 1) - k).toInt()
            a[pos] = n - 1L - i
            var b = false
            for (j in i until n) {
                if (j == pos) {
                    b = true
                    continue
                }
                a[j] = j - i.toLong() + if (b) -1 else 0
            }
            val ind = a.indexOfFirst { it == n - 1L }
            a[ind] = m - n * (n - 1L) / 2 + n - 1
            kotlin.io.println(a.joinToString("\n"))
            return
        }
        k -= n - 1 - i
    }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0