結果

問題 No.1169 Row and Column and Diagonal
ユーザー rutilicusrutilicus
提出日時 2021-02-13 21:29:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 14,204 ms
コンパイル使用メモリ 428,872 KB
実行使用メモリ 75,088 KB
最終ジャッジ日時 2024-07-21 01:30:36
合計ジャッジ時間 18,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
53,032 KB
testcase_01 AC 262 ms
53,148 KB
testcase_02 AC 260 ms
53,064 KB
testcase_03 AC 258 ms
52,912 KB
testcase_04 AC 260 ms
52,920 KB
testcase_05 AC 259 ms
53,016 KB
testcase_06 AC 307 ms
54,496 KB
testcase_07 AC 343 ms
56,788 KB
testcase_08 AC 383 ms
61,516 KB
testcase_09 AC 398 ms
65,080 KB
testcase_10 AC 441 ms
72,640 KB
testcase_11 AC 446 ms
73,516 KB
testcase_12 AC 449 ms
74,660 KB
testcase_13 AC 448 ms
74,856 KB
testcase_14 AC 440 ms
75,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val ans = Array(n) { IntArray(n) }

    for (i in 1..n) {
        var current = i
        for (j in i..i + n) {
            ans[i - 1][(j - 1) % n] = current
            current--
            if (current == 0) {
                current = n
            }
        }
    }

    ans.forEach { builder.appendLine(it.joinToString(" ")) }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0