結果

問題 No.547 未知の言語
ユーザー arbtarbt
提出日時 2017-09-16 21:28:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 11,621 ms
コンパイル使用メモリ 428,824 KB
実行使用メモリ 55,452 KB
最終ジャッジ日時 2024-04-30 16:03:18
合計ジャッジ時間 24,535 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
55,356 KB
testcase_01 AC 346 ms
55,332 KB
testcase_02 AC 349 ms
55,408 KB
testcase_03 AC 349 ms
55,176 KB
testcase_04 AC 356 ms
55,448 KB
testcase_05 AC 353 ms
55,204 KB
testcase_06 AC 352 ms
55,332 KB
testcase_07 AC 354 ms
55,192 KB
testcase_08 AC 347 ms
55,420 KB
testcase_09 AC 349 ms
55,380 KB
testcase_10 AC 348 ms
55,452 KB
testcase_11 AC 347 ms
55,276 KB
testcase_12 AC 349 ms
55,228 KB
testcase_13 AC 348 ms
55,288 KB
testcase_14 AC 350 ms
55,180 KB
testcase_15 AC 344 ms
55,192 KB
testcase_16 AC 353 ms
55,260 KB
testcase_17 AC 349 ms
55,180 KB
testcase_18 AC 351 ms
55,212 KB
testcase_19 AC 349 ms
55,344 KB
testcase_20 AC 356 ms
55,180 KB
testcase_21 AC 354 ms
55,324 KB
testcase_22 AC 348 ms
55,304 KB
testcase_23 AC 345 ms
55,264 KB
testcase_24 AC 362 ms
55,348 KB
testcase_25 AC 348 ms
55,288 KB
testcase_26 AC 351 ms
55,288 KB
testcase_27 AC 348 ms
55,376 KB
testcase_28 AC 351 ms
55,284 KB
testcase_29 AC 349 ms
55,376 KB
testcase_30 AC 348 ms
55,304 KB
testcase_31 AC 350 ms
55,176 KB
testcase_32 AC 354 ms
55,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:25:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {
    
    val N = scan.nextInt()
    val S = strings(N)
    val T = strings(N)
 
    var c=0
    for(i in S.indices){
        if(S[i]!=T[i]){
            break
        }
        c++
    }
    
    println(c+1)
    println(S[c])
    println(T[c])
}

var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}

fun strings(N:Int):Array<String> = Array(N,{scan.next()})
fun ints(N:Int):Array<Int> = Array(N,{scan.nextInt()})
fun longs(N:Int):Array<Long> = Array(N,{scan.nextLong()})
0