結果

問題 No.547 未知の言語
ユーザー yamax3232yamax3232
提出日時 2018-03-16 13:29:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-06-26 03:09:06
合計ジャッジ時間 8,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,660 KB
testcase_01 AC 139 ms
41,836 KB
testcase_02 AC 139 ms
41,008 KB
testcase_03 AC 138 ms
41,464 KB
testcase_04 AC 141 ms
41,184 KB
testcase_05 AC 146 ms
41,632 KB
testcase_06 AC 138 ms
41,392 KB
testcase_07 AC 140 ms
41,184 KB
testcase_08 AC 138 ms
40,956 KB
testcase_09 AC 142 ms
41,888 KB
testcase_10 AC 137 ms
41,220 KB
testcase_11 AC 141 ms
41,060 KB
testcase_12 AC 137 ms
41,564 KB
testcase_13 AC 138 ms
41,700 KB
testcase_14 AC 137 ms
41,240 KB
testcase_15 AC 137 ms
41,400 KB
testcase_16 AC 149 ms
41,204 KB
testcase_17 AC 140 ms
41,248 KB
testcase_18 AC 147 ms
40,868 KB
testcase_19 AC 142 ms
40,980 KB
testcase_20 AC 145 ms
41,012 KB
testcase_21 AC 141 ms
41,300 KB
testcase_22 AC 141 ms
41,496 KB
testcase_23 AC 137 ms
41,112 KB
testcase_24 AC 139 ms
41,104 KB
testcase_25 AC 139 ms
41,436 KB
testcase_26 AC 140 ms
41,316 KB
testcase_27 AC 141 ms
41,560 KB
testcase_28 AC 137 ms
41,520 KB
testcase_29 AC 139 ms
40,972 KB
testcase_30 AC 134 ms
41,132 KB
testcase_31 AC 139 ms
41,216 KB
testcase_32 AC 142 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int n=kb.nextInt();
		String s1[]=new String[n];
		String s2[]=new String[n];
		for(int i=0;i<n;i++){
			s1[i]=kb.next();

		}
		for(int i=0;i<n;i++){
			s2[i]=kb.next();
		}
		int num=0;
		for(int i=0;i<n;i++){
			if(!s1[i].equals(s2[i])){			
				num=i;
			}
		}
		System.out.println(num+1);
		System.out.println(s1[num]);
		System.out.println(s2[num]);
	}

}
0