結果

問題 No.547 未知の言語
ユーザー jimanojimano
提出日時 2018-01-26 22:05:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 4,203 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 53,500 KB
最終ジャッジ日時 2024-06-26 02:58:37
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,500 KB
testcase_01 AC 115 ms
53,060 KB
testcase_02 AC 102 ms
53,184 KB
testcase_03 AC 104 ms
53,424 KB
testcase_04 AC 104 ms
53,496 KB
testcase_05 AC 107 ms
53,212 KB
testcase_06 AC 107 ms
53,424 KB
testcase_07 AC 104 ms
53,192 KB
testcase_08 AC 108 ms
53,308 KB
testcase_09 AC 103 ms
53,088 KB
testcase_10 AC 118 ms
53,248 KB
testcase_11 AC 102 ms
53,448 KB
testcase_12 AC 102 ms
53,252 KB
testcase_13 AC 115 ms
53,460 KB
testcase_14 AC 117 ms
53,240 KB
testcase_15 AC 104 ms
53,428 KB
testcase_16 AC 111 ms
53,188 KB
testcase_17 AC 104 ms
53,220 KB
testcase_18 AC 103 ms
53,440 KB
testcase_19 AC 115 ms
53,416 KB
testcase_20 AC 111 ms
53,288 KB
testcase_21 AC 103 ms
53,124 KB
testcase_22 AC 104 ms
53,144 KB
testcase_23 AC 114 ms
53,080 KB
testcase_24 AC 101 ms
53,156 KB
testcase_25 AC 103 ms
52,956 KB
testcase_26 AC 102 ms
53,460 KB
testcase_27 AC 104 ms
53,488 KB
testcase_28 AC 112 ms
53,432 KB
testcase_29 AC 103 ms
53,228 KB
testcase_30 AC 106 ms
52,876 KB
testcase_31 AC 105 ms
53,148 KB
testcase_32 AC 101 ms
53,396 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 = i;
					break;
				}
			}
			System.out.println((cnt + 1) + "\n" + str1[cnt] + "\n" + str2[cnt]);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0