結果

問題 No.1587 012 Matrix
ユーザー 箱星箱星
提出日時 2021-07-08 23:43:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 495 ms / 1,000 ms
コード長 828 bytes
コンパイル時間 12,775 ms
コンパイル使用メモリ 441,504 KB
実行使用メモリ 74,420 KB
最終ジャッジ日時 2024-07-01 13:19:02
合計ジャッジ時間 23,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
60,100 KB
testcase_01 AC 323 ms
60,072 KB
testcase_02 AC 321 ms
59,916 KB
testcase_03 AC 320 ms
60,016 KB
testcase_04 AC 320 ms
60,004 KB
testcase_05 AC 321 ms
59,960 KB
testcase_06 AC 320 ms
60,040 KB
testcase_07 AC 320 ms
59,804 KB
testcase_08 AC 321 ms
59,776 KB
testcase_09 AC 344 ms
59,840 KB
testcase_10 AC 353 ms
60,144 KB
testcase_11 AC 361 ms
59,840 KB
testcase_12 AC 358 ms
59,984 KB
testcase_13 AC 380 ms
62,136 KB
testcase_14 AC 463 ms
66,244 KB
testcase_15 AC 470 ms
68,404 KB
testcase_16 AC 481 ms
70,456 KB
testcase_17 AC 494 ms
72,168 KB
testcase_18 AC 490 ms
72,316 KB
testcase_19 AC 495 ms
74,420 KB
testcase_20 AC 492 ms
74,368 KB
testcase_21 AC 493 ms
74,368 KB
testcase_22 AC 316 ms
60,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { IntArray(n) { 0 } }
    for (k in 0 until n step 2) {
        for (i in k until n) {
            a[k][i] = 2
            a[i][k] = 2
        }
        a[k][k + 1] = 1
    }
    a.forEach { println(it.joinToString("")) }
}

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