結果

問題 No.547 未知の言語
ユーザー bellbell
提出日時 2021-02-21 14:13:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 78,320 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-09-19 12:15:51
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,188 KB
testcase_01 AC 114 ms
41,164 KB
testcase_02 AC 118 ms
41,128 KB
testcase_03 AC 115 ms
41,472 KB
testcase_04 AC 108 ms
41,264 KB
testcase_05 AC 122 ms
41,420 KB
testcase_06 AC 121 ms
41,116 KB
testcase_07 AC 122 ms
41,264 KB
testcase_08 AC 105 ms
41,568 KB
testcase_09 AC 118 ms
41,264 KB
testcase_10 AC 122 ms
41,408 KB
testcase_11 AC 118 ms
41,300 KB
testcase_12 AC 114 ms
41,272 KB
testcase_13 AC 126 ms
41,136 KB
testcase_14 AC 120 ms
41,504 KB
testcase_15 AC 117 ms
41,224 KB
testcase_16 AC 119 ms
41,312 KB
testcase_17 AC 102 ms
41,536 KB
testcase_18 AC 125 ms
41,336 KB
testcase_19 AC 115 ms
41,404 KB
testcase_20 AC 115 ms
41,372 KB
testcase_21 AC 125 ms
41,320 KB
testcase_22 AC 109 ms
41,536 KB
testcase_23 AC 114 ms
41,164 KB
testcase_24 AC 107 ms
41,864 KB
testcase_25 AC 98 ms
41,532 KB
testcase_26 AC 104 ms
41,308 KB
testcase_27 AC 129 ms
41,556 KB
testcase_28 AC 101 ms
41,436 KB
testcase_29 AC 100 ms
41,128 KB
testcase_30 AC 103 ms
41,264 KB
testcase_31 AC 113 ms
41,568 KB
testcase_32 AC 114 ms
41,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

	import java.util.*;

	public class Main {
		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();
			}
			for( int i = 0; i < n; i++ ){
				t[i] = sc.next();
			}
			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]);
				}
			}
			sc.close();
		}
	}
0