結果

問題 No.547 未知の言語
ユーザー tsunabittsunabit
提出日時 2018-07-08 17:54:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 3,743 ms
コンパイル使用メモリ 76,444 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-07-07 19:38:21
合計ジャッジ時間 9,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,116 KB
testcase_01 AC 128 ms
41,088 KB
testcase_02 AC 128 ms
40,916 KB
testcase_03 AC 128 ms
41,240 KB
testcase_04 AC 129 ms
41,080 KB
testcase_05 AC 128 ms
41,028 KB
testcase_06 AC 115 ms
39,808 KB
testcase_07 AC 116 ms
39,760 KB
testcase_08 AC 112 ms
40,040 KB
testcase_09 AC 133 ms
41,000 KB
testcase_10 AC 129 ms
41,064 KB
testcase_11 AC 128 ms
41,000 KB
testcase_12 AC 128 ms
41,136 KB
testcase_13 AC 132 ms
41,188 KB
testcase_14 AC 126 ms
41,288 KB
testcase_15 AC 127 ms
41,152 KB
testcase_16 AC 126 ms
41,268 KB
testcase_17 AC 130 ms
40,892 KB
testcase_18 AC 130 ms
41,016 KB
testcase_19 AC 127 ms
41,152 KB
testcase_20 AC 128 ms
41,012 KB
testcase_21 AC 127 ms
41,192 KB
testcase_22 AC 129 ms
40,992 KB
testcase_23 AC 128 ms
40,916 KB
testcase_24 AC 115 ms
39,828 KB
testcase_25 AC 127 ms
40,836 KB
testcase_26 AC 115 ms
39,980 KB
testcase_27 AC 127 ms
40,916 KB
testcase_28 AC 129 ms
41,116 KB
testcase_29 AC 127 ms
41,140 KB
testcase_30 AC 127 ms
40,800 KB
testcase_31 AC 130 ms
41,000 KB
testcase_32 AC 133 ms
40,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No547 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int n = Integer.parseInt(sc.nextLine());
		String[] s = sc.nextLine().split(" ", 0);
		String[] t = sc.nextLine().split(" ", 0);
		for(int i = 0; i < n; i++) {
			if(!s[i].equals(t[i])) {
				System.out.println(i + 1);
				System.out.println(s[i]);
				System.out.println(t[i]);
				return;
			}
		}
	}
}
0