結果

問題 No.547 未知の言語
ユーザー fal_rndfal_rnd
提出日時 2017-07-28 22:22:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 82,812 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-06-26 01:37:36
合計ジャッジ時間 8,013 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,936 KB
testcase_01 AC 133 ms
53,836 KB
testcase_02 AC 133 ms
54,132 KB
testcase_03 AC 136 ms
54,124 KB
testcase_04 AC 135 ms
53,892 KB
testcase_05 AC 135 ms
54,128 KB
testcase_06 AC 137 ms
54,048 KB
testcase_07 AC 138 ms
53,708 KB
testcase_08 AC 136 ms
53,916 KB
testcase_09 AC 139 ms
54,120 KB
testcase_10 AC 134 ms
54,180 KB
testcase_11 AC 138 ms
53,728 KB
testcase_12 AC 137 ms
54,340 KB
testcase_13 AC 135 ms
54,032 KB
testcase_14 AC 134 ms
54,148 KB
testcase_15 AC 136 ms
54,324 KB
testcase_16 AC 138 ms
54,172 KB
testcase_17 AC 136 ms
54,116 KB
testcase_18 AC 138 ms
53,692 KB
testcase_19 AC 135 ms
53,864 KB
testcase_20 AC 136 ms
53,864 KB
testcase_21 AC 134 ms
53,980 KB
testcase_22 AC 139 ms
54,144 KB
testcase_23 AC 134 ms
54,080 KB
testcase_24 AC 134 ms
53,860 KB
testcase_25 AC 134 ms
54,416 KB
testcase_26 AC 134 ms
53,804 KB
testcase_27 AC 137 ms
53,992 KB
testcase_28 AC 135 ms
54,336 KB
testcase_29 AC 133 ms
54,136 KB
testcase_30 AC 134 ms
54,104 KB
testcase_31 AC 134 ms
53,696 KB
testcase_32 AC 136 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static final Scanner s=new Scanner(System.in);
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n){return REPS(n).map(i->getInt());}
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		int n=getInt();
		String[]a=REPS(n).mapToObj(i->s.next()).toArray(String[]::new);
		String[]b=REPS(n).mapToObj(i->s.next()).toArray(String[]::new);

		for(int i=0;i<n;++i)
			if(!a[i].equals(b[i])) {
				System.out.println(i+1);
				System.out.println(a[i]);
				System.out.println(b[i]);
				break;
			}
	}
}
0