結果

問題 No.547 未知の言語
ユーザー fjafjafjafjafjafja
提出日時 2017-07-30 11:07:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 85,628 KB
実行使用メモリ 43,056 KB
最終ジャッジ日時 2024-06-26 02:23:21
合計ジャッジ時間 9,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,736 KB
testcase_01 AC 164 ms
42,732 KB
testcase_02 AC 162 ms
42,772 KB
testcase_03 AC 166 ms
42,800 KB
testcase_04 AC 169 ms
42,632 KB
testcase_05 AC 165 ms
42,796 KB
testcase_06 AC 168 ms
42,832 KB
testcase_07 AC 164 ms
43,056 KB
testcase_08 AC 164 ms
42,832 KB
testcase_09 AC 169 ms
42,840 KB
testcase_10 AC 162 ms
42,944 KB
testcase_11 AC 164 ms
42,596 KB
testcase_12 AC 162 ms
42,488 KB
testcase_13 AC 169 ms
42,844 KB
testcase_14 AC 172 ms
42,608 KB
testcase_15 AC 155 ms
42,836 KB
testcase_16 AC 155 ms
42,864 KB
testcase_17 AC 160 ms
42,616 KB
testcase_18 AC 168 ms
42,916 KB
testcase_19 AC 164 ms
42,620 KB
testcase_20 AC 165 ms
42,948 KB
testcase_21 AC 165 ms
42,736 KB
testcase_22 AC 163 ms
42,948 KB
testcase_23 AC 161 ms
42,632 KB
testcase_24 AC 149 ms
42,592 KB
testcase_25 AC 164 ms
42,832 KB
testcase_26 AC 167 ms
42,732 KB
testcase_27 AC 151 ms
42,748 KB
testcase_28 AC 156 ms
42,960 KB
testcase_29 AC 163 ms
42,952 KB
testcase_30 AC 162 ms
42,584 KB
testcase_31 AC 163 ms
42,728 KB
testcase_32 AC 161 ms
42,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N547 {

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		String[] S=new String[N];
		String[] T=new String[N];
		for(int i=0;i<N;i++)
		{
			S[i]=sc.next();
		}
		int buf=-1;
		for(int i=0;i<N;i++)
		{
			T[i]=sc.next();
			if(!(S[i].equals(T[i])))
			{
				buf=i;
				i+=N;
			}
		}
		System.out.println(buf+1+"\n"+S[buf]+"\n"+T[buf]);
	}
}
0