結果

問題 No.547 未知の言語
ユーザー cande398cande398
提出日時 2017-10-07 02:28:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-06-26 02:48:46
合計ジャッジ時間 7,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,152 KB
testcase_01 AC 137 ms
53,720 KB
testcase_02 AC 139 ms
54,116 KB
testcase_03 AC 134 ms
53,964 KB
testcase_04 AC 139 ms
54,080 KB
testcase_05 AC 138 ms
54,200 KB
testcase_06 AC 137 ms
53,992 KB
testcase_07 AC 142 ms
53,904 KB
testcase_08 AC 137 ms
53,852 KB
testcase_09 AC 139 ms
54,260 KB
testcase_10 AC 135 ms
54,232 KB
testcase_11 AC 137 ms
53,940 KB
testcase_12 AC 140 ms
54,020 KB
testcase_13 AC 134 ms
54,076 KB
testcase_14 AC 134 ms
54,032 KB
testcase_15 AC 136 ms
53,832 KB
testcase_16 AC 137 ms
54,344 KB
testcase_17 AC 134 ms
53,880 KB
testcase_18 AC 138 ms
53,972 KB
testcase_19 AC 138 ms
53,968 KB
testcase_20 AC 137 ms
53,656 KB
testcase_21 AC 140 ms
53,756 KB
testcase_22 AC 137 ms
53,948 KB
testcase_23 AC 132 ms
54,216 KB
testcase_24 AC 135 ms
54,128 KB
testcase_25 AC 138 ms
54,444 KB
testcase_26 AC 134 ms
53,952 KB
testcase_27 AC 135 ms
54,084 KB
testcase_28 AC 137 ms
54,396 KB
testcase_29 AC 134 ms
54,332 KB
testcase_30 AC 134 ms
54,516 KB
testcase_31 AC 134 ms
54,284 KB
testcase_32 AC 135 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    int i;
    Scanner sc = new Scanner(System.in);
    int num = sc.nextInt();
    String[] str1 = new String[num];
    for(i=0;i<num;i++)str1[i] = sc.next();
    String[] str2 = new String[num];
    for(i=0;i<num;i++)str2[i] = sc.next();
    for(i=0;i<num;i++){
      if(str1[i].equals(str2[i]) == false){
        System.out.println(i+1);
        System.out.println(str1[i]);
        System.out.println(str2[i]);
      }
    }
  }
}
0