結果

問題 No.547 未知の言語
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-12 23:03:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-06-26 02:50:04
合計ジャッジ時間 5,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,228 KB
testcase_01 AC 57 ms
50,248 KB
testcase_02 AC 59 ms
50,252 KB
testcase_03 AC 58 ms
50,368 KB
testcase_04 AC 57 ms
50,164 KB
testcase_05 AC 57 ms
50,276 KB
testcase_06 AC 56 ms
50,204 KB
testcase_07 AC 56 ms
50,348 KB
testcase_08 AC 59 ms
50,136 KB
testcase_09 AC 57 ms
50,280 KB
testcase_10 AC 57 ms
50,272 KB
testcase_11 AC 58 ms
49,904 KB
testcase_12 AC 56 ms
50,224 KB
testcase_13 AC 57 ms
50,284 KB
testcase_14 AC 57 ms
50,236 KB
testcase_15 AC 57 ms
50,160 KB
testcase_16 AC 59 ms
50,300 KB
testcase_17 AC 56 ms
50,364 KB
testcase_18 AC 57 ms
49,948 KB
testcase_19 AC 56 ms
50,308 KB
testcase_20 AC 56 ms
50,284 KB
testcase_21 AC 58 ms
49,904 KB
testcase_22 AC 57 ms
50,100 KB
testcase_23 AC 57 ms
50,208 KB
testcase_24 AC 56 ms
50,264 KB
testcase_25 AC 56 ms
50,420 KB
testcase_26 AC 56 ms
50,268 KB
testcase_27 AC 56 ms
50,364 KB
testcase_28 AC 57 ms
49,860 KB
testcase_29 AC 56 ms
50,392 KB
testcase_30 AC 57 ms
50,252 KB
testcase_31 AC 57 ms
49,972 KB
testcase_32 AC 55 ms
50,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Program{

    public static void main(String[] args) {
        
        try{
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            int n = Integer.parseInt(br.readLine());
            String[] str1 = br.readLine().split(" ");
            String[] str2 = br.readLine().split(" ");
             System.out.println(diffNum(n,str1,str2)+1);
             System.out.println(str1[diffNum(n,str1,str2)]);
             System.out.println(str2[diffNum(n,str1,str2)]);           
        }catch(IOException e){
            e.getStackTrace();
        }
    }
    
    public static int diffNum(int n, String[] s1, String[] s2){
        int ans = 0;
        for(int i=0; i < n; i++){
            if(s1[i].equals(s2[i]))
                ans++;
            else break;
        }
        return ans;
    }
}
0