結果

問題 No.547 未知の言語
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-03 22:38:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-26 02:59:08
合計ジャッジ時間 6,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,520 KB
testcase_01 AC 107 ms
40,040 KB
testcase_02 AC 122 ms
41,324 KB
testcase_03 AC 120 ms
41,260 KB
testcase_04 AC 113 ms
40,828 KB
testcase_05 AC 109 ms
39,864 KB
testcase_06 AC 122 ms
41,192 KB
testcase_07 AC 123 ms
41,396 KB
testcase_08 AC 111 ms
40,140 KB
testcase_09 AC 122 ms
41,380 KB
testcase_10 AC 109 ms
40,044 KB
testcase_11 AC 117 ms
41,516 KB
testcase_12 AC 123 ms
41,028 KB
testcase_13 AC 121 ms
41,312 KB
testcase_14 AC 119 ms
41,412 KB
testcase_15 AC 121 ms
41,280 KB
testcase_16 AC 124 ms
41,172 KB
testcase_17 AC 120 ms
41,292 KB
testcase_18 AC 120 ms
41,548 KB
testcase_19 AC 119 ms
41,424 KB
testcase_20 AC 122 ms
41,568 KB
testcase_21 AC 115 ms
40,100 KB
testcase_22 AC 122 ms
41,424 KB
testcase_23 AC 128 ms
41,640 KB
testcase_24 AC 110 ms
40,316 KB
testcase_25 AC 119 ms
41,692 KB
testcase_26 AC 117 ms
41,516 KB
testcase_27 AC 119 ms
41,164 KB
testcase_28 AC 108 ms
40,060 KB
testcase_29 AC 107 ms
40,144 KB
testcase_30 AC 120 ms
41,508 KB
testcase_31 AC 121 ms
41,584 KB
testcase_32 AC 122 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		int N = Integer.parseInt(in.nextLine());
		String S = in.nextLine();
		String T = in.nextLine();
		
		String[] Sattr = S.split(" ");
		String[] Tattr = T.split(" ");
		
		for (int i = 0; i < N; i++) {
			if (!Sattr[i].equals(Tattr[i])) {
				System.out.println(i+1);
				System.out.println(Sattr[i]);
				System.out.println(Tattr[i]);
				break;
			}
		}
	}
}
0