結果

問題 No.547 未知の言語
ユーザー tentententen
提出日時 2020-11-12 08:44:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 44,380 KB
最終ジャッジ日時 2024-07-22 19:01:00
合計ジャッジ時間 6,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,668 KB
testcase_01 AC 105 ms
41,084 KB
testcase_02 AC 102 ms
44,316 KB
testcase_03 AC 92 ms
39,500 KB
testcase_04 AC 103 ms
41,444 KB
testcase_05 AC 97 ms
40,004 KB
testcase_06 AC 105 ms
41,076 KB
testcase_07 AC 107 ms
41,048 KB
testcase_08 AC 102 ms
41,444 KB
testcase_09 AC 105 ms
41,036 KB
testcase_10 AC 99 ms
40,788 KB
testcase_11 AC 100 ms
40,184 KB
testcase_12 AC 108 ms
41,464 KB
testcase_13 AC 98 ms
40,136 KB
testcase_14 AC 105 ms
41,288 KB
testcase_15 AC 105 ms
41,392 KB
testcase_16 AC 98 ms
40,412 KB
testcase_17 AC 104 ms
41,168 KB
testcase_18 AC 100 ms
40,132 KB
testcase_19 AC 104 ms
41,128 KB
testcase_20 AC 102 ms
40,132 KB
testcase_21 AC 102 ms
40,152 KB
testcase_22 AC 112 ms
41,080 KB
testcase_23 AC 112 ms
41,336 KB
testcase_24 AC 108 ms
41,496 KB
testcase_25 AC 105 ms
41,428 KB
testcase_26 AC 103 ms
41,208 KB
testcase_27 AC 103 ms
41,444 KB
testcase_28 AC 105 ms
41,112 KB
testcase_29 AC 110 ms
41,076 KB
testcase_30 AC 105 ms
41,388 KB
testcase_31 AC 105 ms
41,384 KB
testcase_32 AC 106 ms
44,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        String[] aArr = new String[n];
        for (int i = 0; i < n; i++) {
            aArr[i] = sc.next();
        }
        String[] bArr = new String[n];
        for (int i = 0; i < n; i++) {
            String s = sc.next();
            if (!aArr[i].equals(s)) {
                System.out.println(i + 1);
                System.out.println(aArr[i]);
                System.out.println(s);
                return;
            }
        }
    }
}
0