結果

問題 No.547 未知の言語
ユーザー jimanojimano
提出日時 2018-01-26 22:08:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 3,754 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 40,776 KB
最終ジャッジ日時 2024-06-26 02:58:45
合計ジャッジ時間 7,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,392 KB
testcase_01 AC 90 ms
40,040 KB
testcase_02 AC 101 ms
40,612 KB
testcase_03 AC 101 ms
40,396 KB
testcase_04 AC 99 ms
40,412 KB
testcase_05 AC 90 ms
40,456 KB
testcase_06 AC 92 ms
40,388 KB
testcase_07 AC 92 ms
39,968 KB
testcase_08 AC 102 ms
40,400 KB
testcase_09 AC 101 ms
39,328 KB
testcase_10 AC 92 ms
40,412 KB
testcase_11 AC 100 ms
40,264 KB
testcase_12 AC 102 ms
40,628 KB
testcase_13 AC 87 ms
40,432 KB
testcase_14 AC 99 ms
40,400 KB
testcase_15 AC 104 ms
40,156 KB
testcase_16 AC 95 ms
40,412 KB
testcase_17 AC 91 ms
40,584 KB
testcase_18 AC 88 ms
40,384 KB
testcase_19 AC 105 ms
40,380 KB
testcase_20 AC 90 ms
40,520 KB
testcase_21 AC 90 ms
40,376 KB
testcase_22 AC 101 ms
40,612 KB
testcase_23 AC 90 ms
40,020 KB
testcase_24 AC 93 ms
40,280 KB
testcase_25 AC 94 ms
40,656 KB
testcase_26 AC 90 ms
40,044 KB
testcase_27 AC 102 ms
40,080 KB
testcase_28 AC 92 ms
40,404 KB
testcase_29 AC 100 ms
40,260 KB
testcase_30 AC 100 ms
40,488 KB
testcase_31 AC 102 ms
40,356 KB
testcase_32 AC 102 ms
40,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0547 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int length = Integer.parseInt(br.readLine());
			int cnt = 0;
			String[] str1 = br.readLine().split(" ");
			String[] str2 = br.readLine().split(" ");

			for (int i = 0; i < length; i++) {
				if (str1[i].equals(str2[i])) {
					cnt++;
				} else {
					break;
				}
			}
			System.out.println((cnt + 1) + "\n" + str1[cnt] + "\n" + str2[cnt]);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0