結果

問題 No.547 未知の言語
ユーザー yamax3232yamax3232
提出日時 2018-03-16 12:35:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 75,712 KB
実行使用メモリ 56,504 KB
最終ジャッジ日時 2024-06-26 03:08:46
合計ジャッジ時間 9,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,448 KB
testcase_01 AC 147 ms
41,472 KB
testcase_02 AC 144 ms
41,736 KB
testcase_03 AC 146 ms
41,792 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 147 ms
41,788 KB
testcase_09 WA -
testcase_10 AC 148 ms
41,080 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 148 ms
41,172 KB
testcase_14 WA -
testcase_15 AC 147 ms
41,744 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 147 ms
41,788 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 142 ms
41,688 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 145 ms
41,448 KB
testcase_29 AC 150 ms
41,808 KB
testcase_30 WA -
testcase_31 AC 149 ms
41,856 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Collections;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int n=kb.nextInt();
		String s1[]=new String[n];
		String s2[]=new String[n];
		for(int i=0;i<n;i++){
			s1[i]=kb.next();
		}
		for(int i=0;i<n;i++){
			s2[i]=kb.next();
		}
		int num=0;
		for(int i=0;i<n;i++){
			if(s1[i]!=s2[i]){
				num=i;
			}
		}
		System.out.println(num+1);
		System.out.println(s1[num]);
		System.out.println(s2[num]);
	}

}
0