結果

問題 No.547 未知の言語
ユーザー GrenacheGrenache
提出日時 2017-07-28 22:22:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 4,070 ms
コンパイル使用メモリ 75,536 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-06-26 02:07:29
合計ジャッジ時間 8,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,304 KB
testcase_01 AC 111 ms
40,252 KB
testcase_02 AC 125 ms
41,188 KB
testcase_03 AC 113 ms
40,272 KB
testcase_04 AC 127 ms
41,212 KB
testcase_05 AC 113 ms
40,232 KB
testcase_06 AC 129 ms
41,552 KB
testcase_07 AC 116 ms
40,012 KB
testcase_08 AC 123 ms
41,252 KB
testcase_09 AC 124 ms
41,048 KB
testcase_10 AC 122 ms
41,572 KB
testcase_11 AC 128 ms
41,508 KB
testcase_12 AC 122 ms
41,448 KB
testcase_13 AC 125 ms
41,320 KB
testcase_14 AC 110 ms
40,456 KB
testcase_15 AC 124 ms
41,516 KB
testcase_16 AC 114 ms
40,092 KB
testcase_17 AC 123 ms
41,240 KB
testcase_18 AC 132 ms
41,676 KB
testcase_19 AC 110 ms
40,432 KB
testcase_20 AC 128 ms
41,212 KB
testcase_21 AC 125 ms
41,424 KB
testcase_22 AC 115 ms
40,240 KB
testcase_23 AC 124 ms
41,644 KB
testcase_24 AC 126 ms
41,636 KB
testcase_25 AC 121 ms
41,424 KB
testcase_26 AC 123 ms
41,204 KB
testcase_27 AC 120 ms
40,680 KB
testcase_28 AC 126 ms
41,436 KB
testcase_29 AC 124 ms
41,296 KB
testcase_30 AC 122 ms
41,324 KB
testcase_31 AC 123 ms
41,792 KB
testcase_32 AC 125 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder547 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		String[] s = new String[n];
		String[] t = new String[n];
		for (int i = 0; i < n; i++) {
			s[i] = sc.next();
		}
		for (int i = 0; i < n; i++) {
			t[i] = sc.next();

			if (!s[i].equals(t[i])) {
				pr.println(i + 1);
				pr.println(s[i]);
				pr.println(t[i]);

				return;
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0