結果

問題 No.547 未知の言語
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 17:19:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 3,983 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-13 11:06:09
合計ジャッジ時間 9,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,056 KB
testcase_01 AC 132 ms
54,268 KB
testcase_02 AC 132 ms
54,064 KB
testcase_03 AC 132 ms
54,012 KB
testcase_04 AC 137 ms
54,168 KB
testcase_05 AC 137 ms
53,972 KB
testcase_06 AC 135 ms
54,072 KB
testcase_07 AC 137 ms
54,224 KB
testcase_08 AC 132 ms
53,796 KB
testcase_09 AC 139 ms
54,184 KB
testcase_10 AC 133 ms
54,092 KB
testcase_11 AC 135 ms
54,236 KB
testcase_12 AC 133 ms
54,088 KB
testcase_13 AC 132 ms
54,112 KB
testcase_14 AC 132 ms
54,172 KB
testcase_15 AC 130 ms
54,084 KB
testcase_16 AC 137 ms
53,992 KB
testcase_17 AC 133 ms
54,136 KB
testcase_18 AC 136 ms
54,200 KB
testcase_19 AC 135 ms
54,140 KB
testcase_20 AC 133 ms
54,084 KB
testcase_21 AC 135 ms
54,164 KB
testcase_22 AC 137 ms
54,124 KB
testcase_23 AC 133 ms
54,116 KB
testcase_24 AC 135 ms
54,032 KB
testcase_25 AC 134 ms
53,940 KB
testcase_26 AC 132 ms
53,968 KB
testcase_27 AC 135 ms
54,040 KB
testcase_28 AC 131 ms
53,664 KB
testcase_29 AC 132 ms
53,996 KB
testcase_30 AC 133 ms
54,108 KB
testcase_31 AC 132 ms
53,900 KB
testcase_32 AC 131 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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