結果

問題 No.239 にゃんぱすー
ユーザー komkomhkomkomh
提出日時 2019-06-19 17:46:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 11,225 ms
コンパイル使用メモリ 429,300 KB
実行使用メモリ 60,040 KB
最終ジャッジ日時 2024-11-20 18:58:39
合計ジャッジ時間 23,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
56,772 KB
testcase_01 AC 268 ms
56,796 KB
testcase_02 AC 275 ms
56,860 KB
testcase_03 AC 261 ms
56,716 KB
testcase_04 AC 258 ms
56,764 KB
testcase_05 AC 260 ms
56,868 KB
testcase_06 AC 260 ms
56,824 KB
testcase_07 AC 258 ms
56,728 KB
testcase_08 AC 266 ms
56,936 KB
testcase_09 AC 269 ms
57,032 KB
testcase_10 AC 280 ms
56,960 KB
testcase_11 AC 315 ms
56,988 KB
testcase_12 AC 302 ms
57,048 KB
testcase_13 AC 308 ms
57,032 KB
testcase_14 AC 312 ms
57,028 KB
testcase_15 AC 314 ms
57,008 KB
testcase_16 AC 311 ms
56,992 KB
testcase_17 AC 319 ms
57,164 KB
testcase_18 AC 327 ms
57,016 KB
testcase_19 AC 322 ms
57,032 KB
testcase_20 AC 327 ms
57,184 KB
testcase_21 AC 356 ms
57,252 KB
testcase_22 AC 376 ms
58,808 KB
testcase_23 AC 385 ms
59,068 KB
testcase_24 AC 382 ms
58,812 KB
testcase_25 AC 389 ms
59,928 KB
testcase_26 AC 384 ms
58,796 KB
testcase_27 AC 263 ms
56,644 KB
testcase_28 AC 281 ms
57,000 KB
testcase_29 AC 301 ms
56,888 KB
testcase_30 AC 318 ms
57,064 KB
testcase_31 AC 350 ms
57,016 KB
testcase_32 AC 358 ms
57,116 KB
testcase_33 AC 368 ms
57,072 KB
testcase_34 AC 406 ms
60,040 KB
testcase_35 AC 381 ms
59,124 KB
testcase_36 AC 381 ms
59,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val N = readLine()!!.toInt()
    var A = mutableListOf<List<String>>()
    for (i in 0 until N) {
        A.add(readLine()!!.split(" "))
    }

    fun isRenchon(i: Int): Boolean {
        for (j in 0 until N) {
            if (i == j) {
                continue
            }
            if (A[j][i] != "nyanpass") {
                return false
            }
        }
        return true
    }

    var renChanIndex = -2
    for (i in 0 until N) {
        if (isRenchon(i)) {
            if (renChanIndex != -2) {
                println("-1")
                return
            }
            renChanIndex = i
        }
    }
    println(renChanIndex + 1)
}
0