結果

問題 No.547 未知の言語
ユーザー FVRChanFVRChan
提出日時 2017-09-29 12:12:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-06-26 02:46:48
合計ジャッジ時間 7,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,436 KB
testcase_01 AC 132 ms
41,004 KB
testcase_02 AC 136 ms
41,492 KB
testcase_03 AC 139 ms
41,328 KB
testcase_04 AC 141 ms
41,360 KB
testcase_05 AC 134 ms
41,460 KB
testcase_06 AC 132 ms
41,200 KB
testcase_07 AC 117 ms
39,988 KB
testcase_08 AC 137 ms
41,076 KB
testcase_09 AC 133 ms
41,140 KB
testcase_10 AC 132 ms
41,316 KB
testcase_11 AC 131 ms
41,184 KB
testcase_12 AC 134 ms
40,964 KB
testcase_13 AC 140 ms
40,900 KB
testcase_14 AC 134 ms
41,256 KB
testcase_15 AC 133 ms
41,016 KB
testcase_16 AC 117 ms
39,996 KB
testcase_17 AC 131 ms
41,052 KB
testcase_18 AC 133 ms
41,200 KB
testcase_19 AC 131 ms
41,472 KB
testcase_20 AC 130 ms
41,472 KB
testcase_21 AC 136 ms
41,264 KB
testcase_22 AC 136 ms
40,960 KB
testcase_23 AC 134 ms
41,108 KB
testcase_24 AC 129 ms
41,396 KB
testcase_25 AC 131 ms
41,260 KB
testcase_26 AC 131 ms
41,176 KB
testcase_27 AC 132 ms
41,420 KB
testcase_28 AC 133 ms
41,256 KB
testcase_29 AC 134 ms
41,060 KB
testcase_30 AC 133 ms
41,344 KB
testcase_31 AC 132 ms
41,044 KB
testcase_32 AC 133 ms
41,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=Integer.parseInt(sc.nextLine());
		String are1[]=sc.nextLine().split(" ");
		String are2[]=sc.nextLine().split(" ");
		for(int i=0;i<are1.length;i++){
			if(!are1[i].equals(are2[i])){
				n=i+1;break;
			}
		}System.out.println(n);
		System.out.println(are1[n-1]);
		System.out.println(are2[n-1]);
	}
}
0