結果

問題 No.547 未知の言語
ユーザー minokasagominokasago
提出日時 2019-11-01 09:12:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 11,513 ms
コンパイル使用メモリ 431,404 KB
実行使用メモリ 51,748 KB
最終ジャッジ日時 2024-09-14 22:17:30
合計ジャッジ時間 23,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
51,620 KB
testcase_01 AC 310 ms
51,548 KB
testcase_02 AC 317 ms
51,696 KB
testcase_03 AC 299 ms
50,828 KB
testcase_04 AC 304 ms
50,676 KB
testcase_05 AC 302 ms
50,768 KB
testcase_06 AC 303 ms
50,868 KB
testcase_07 AC 303 ms
51,000 KB
testcase_08 AC 313 ms
51,544 KB
testcase_09 AC 302 ms
50,860 KB
testcase_10 AC 297 ms
50,808 KB
testcase_11 AC 308 ms
50,692 KB
testcase_12 AC 299 ms
50,656 KB
testcase_13 AC 318 ms
51,524 KB
testcase_14 AC 303 ms
50,556 KB
testcase_15 AC 316 ms
51,748 KB
testcase_16 AC 306 ms
50,480 KB
testcase_17 AC 307 ms
50,768 KB
testcase_18 AC 306 ms
50,760 KB
testcase_19 AC 313 ms
51,596 KB
testcase_20 AC 302 ms
50,700 KB
testcase_21 AC 306 ms
50,920 KB
testcase_22 AC 306 ms
50,772 KB
testcase_23 AC 317 ms
51,584 KB
testcase_24 AC 305 ms
50,760 KB
testcase_25 AC 302 ms
50,608 KB
testcase_26 AC 314 ms
50,904 KB
testcase_27 AC 308 ms
50,816 KB
testcase_28 AC 314 ms
51,524 KB
testcase_29 AC 316 ms
51,544 KB
testcase_30 AC 306 ms
50,852 KB
testcase_31 AC 313 ms
51,444 KB
testcase_32 AC 304 ms
50,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main()
{
    val N = readLine()!!.toInt()

    val S = readLine()!!.split(" ")
    val T = readLine()!!.split(" ")

    for (i in 0..N-1) {
        if (S[i] != T[i]) {
            println("${i+1}\n${S[i]}\n${T[i]}")
            return
        }
    }
}
0