結果

問題 No.547 未知の言語
ユーザー 37zigen37zigen
提出日時 2020-01-23 05:20:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-07-18 08:14:56
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,532 KB
testcase_01 AC 114 ms
40,400 KB
testcase_02 AC 112 ms
41,216 KB
testcase_03 AC 105 ms
40,980 KB
testcase_04 AC 107 ms
41,268 KB
testcase_05 AC 103 ms
41,140 KB
testcase_06 AC 101 ms
41,260 KB
testcase_07 AC 123 ms
41,436 KB
testcase_08 AC 101 ms
41,252 KB
testcase_09 AC 130 ms
41,672 KB
testcase_10 AC 120 ms
41,440 KB
testcase_11 AC 129 ms
41,520 KB
testcase_12 AC 118 ms
41,676 KB
testcase_13 AC 120 ms
41,228 KB
testcase_14 AC 120 ms
41,268 KB
testcase_15 AC 120 ms
41,256 KB
testcase_16 AC 127 ms
41,644 KB
testcase_17 AC 108 ms
41,324 KB
testcase_18 AC 107 ms
41,492 KB
testcase_19 AC 120 ms
41,432 KB
testcase_20 AC 117 ms
41,252 KB
testcase_21 AC 110 ms
41,528 KB
testcase_22 AC 109 ms
41,380 KB
testcase_23 AC 114 ms
40,200 KB
testcase_24 AC 109 ms
40,476 KB
testcase_25 AC 111 ms
40,892 KB
testcase_26 AC 120 ms
41,268 KB
testcase_27 AC 120 ms
41,488 KB
testcase_28 AC 124 ms
41,584 KB
testcase_29 AC 113 ms
40,204 KB
testcase_30 AC 104 ms
41,516 KB
testcase_31 AC 104 ms
40,304 KB
testcase_32 AC 114 ms
40,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static void main(String[] args){
		new Main().run();
	}
	
	void run(){
		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]);
			}
		}
	}
}
0