結果

問題 No.547 未知の言語
ユーザー GodNegotoGodNegoto
提出日時 2019-12-03 15:23:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 3,186 ms
コンパイル使用メモリ 75,476 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-11-27 07:41:43
合計ジャッジ時間 8,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,908 KB
testcase_01 AC 115 ms
41,268 KB
testcase_02 AC 102 ms
40,108 KB
testcase_03 AC 123 ms
41,328 KB
testcase_04 AC 105 ms
40,228 KB
testcase_05 AC 121 ms
41,108 KB
testcase_06 AC 108 ms
40,464 KB
testcase_07 AC 107 ms
40,380 KB
testcase_08 AC 115 ms
41,056 KB
testcase_09 AC 128 ms
41,320 KB
testcase_10 AC 119 ms
41,280 KB
testcase_11 AC 104 ms
39,812 KB
testcase_12 AC 107 ms
40,040 KB
testcase_13 AC 120 ms
40,900 KB
testcase_14 AC 117 ms
41,216 KB
testcase_15 AC 105 ms
40,156 KB
testcase_16 AC 119 ms
41,444 KB
testcase_17 AC 112 ms
40,800 KB
testcase_18 AC 118 ms
40,960 KB
testcase_19 AC 114 ms
41,088 KB
testcase_20 AC 104 ms
39,932 KB
testcase_21 AC 116 ms
41,020 KB
testcase_22 AC 117 ms
41,228 KB
testcase_23 AC 118 ms
41,060 KB
testcase_24 AC 118 ms
40,968 KB
testcase_25 AC 100 ms
39,748 KB
testcase_26 AC 114 ms
40,984 KB
testcase_27 AC 114 ms
41,040 KB
testcase_28 AC 121 ms
41,348 KB
testcase_29 AC 116 ms
41,304 KB
testcase_30 AC 116 ms
41,084 KB
testcase_31 AC 119 ms
41,208 KB
testcase_32 AC 112 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		String[] s1 = new String[N];
		String[] s2 = new String[N];
		for(int i=0; i < N; i++) {
			s1[i] = sc.next();
		}
		for(int i=0; i<N; i++) {
			s2[i] = sc.next();
		}
		for(int i=0; i < N; i++) {
			if(s1[i].equals(s2[i])) {
			}
			else {
				System.out.println(i+1);
				System.out.println(s1[i]);
				System.out.println(s2[i]);
				return;
			}
		}
	}
}
0