結果

問題 No.547 未知の言語
ユーザー YOSHIYOSHI
提出日時 2021-03-18 22:49:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 36,988 KB
最終ジャッジ日時 2024-11-17 04:59:09
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,756 KB
testcase_01 AC 47 ms
36,456 KB
testcase_02 AC 47 ms
36,792 KB
testcase_03 AC 47 ms
36,468 KB
testcase_04 AC 48 ms
36,712 KB
testcase_05 AC 47 ms
36,692 KB
testcase_06 AC 50 ms
36,708 KB
testcase_07 AC 48 ms
36,936 KB
testcase_08 AC 48 ms
36,864 KB
testcase_09 AC 48 ms
36,432 KB
testcase_10 AC 49 ms
36,664 KB
testcase_11 AC 48 ms
36,720 KB
testcase_12 AC 48 ms
36,368 KB
testcase_13 AC 47 ms
36,716 KB
testcase_14 AC 48 ms
36,648 KB
testcase_15 AC 50 ms
36,468 KB
testcase_16 AC 50 ms
36,672 KB
testcase_17 AC 50 ms
36,736 KB
testcase_18 AC 48 ms
36,308 KB
testcase_19 AC 47 ms
36,852 KB
testcase_20 AC 48 ms
36,944 KB
testcase_21 AC 48 ms
36,436 KB
testcase_22 AC 48 ms
36,928 KB
testcase_23 AC 49 ms
36,732 KB
testcase_24 AC 47 ms
36,736 KB
testcase_25 AC 48 ms
36,988 KB
testcase_26 AC 48 ms
36,852 KB
testcase_27 AC 47 ms
36,676 KB
testcase_28 AC 48 ms
36,716 KB
testcase_29 AC 47 ms
36,856 KB
testcase_30 AC 47 ms
36,684 KB
testcase_31 AC 51 ms
36,684 KB
testcase_32 AC 48 ms
36,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000547_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int n = Integer.parseInt(br.readLine());
		String[] s = br.readLine().split(" ");
		String[] t = br.readLine().split(" ");
		for(int i = 0; i < n; i++) {
			if(!s[i].equals(t[i])) {
				System.out.println(i + 1);
				System.out.println(s[i]);
				System.out.println(t[i]);
				break;
			}
		}
	}
}
0