結果

問題 No.547 未知の言語
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-13 22:07:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-09-25 04:44:32
合計ジャッジ時間 7,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,220 KB
testcase_01 AC 126 ms
54,104 KB
testcase_02 AC 128 ms
54,100 KB
testcase_03 AC 128 ms
53,876 KB
testcase_04 AC 135 ms
53,836 KB
testcase_05 AC 127 ms
53,928 KB
testcase_06 AC 132 ms
53,860 KB
testcase_07 AC 133 ms
54,148 KB
testcase_08 AC 128 ms
53,928 KB
testcase_09 AC 133 ms
54,256 KB
testcase_10 AC 125 ms
54,016 KB
testcase_11 AC 129 ms
54,216 KB
testcase_12 AC 118 ms
53,972 KB
testcase_13 AC 109 ms
53,012 KB
testcase_14 AC 124 ms
53,984 KB
testcase_15 AC 125 ms
54,068 KB
testcase_16 AC 127 ms
54,172 KB
testcase_17 AC 132 ms
54,332 KB
testcase_18 AC 129 ms
54,304 KB
testcase_19 AC 126 ms
54,004 KB
testcase_20 AC 113 ms
53,020 KB
testcase_21 AC 125 ms
54,116 KB
testcase_22 AC 130 ms
54,044 KB
testcase_23 AC 123 ms
53,928 KB
testcase_24 AC 134 ms
54,328 KB
testcase_25 AC 126 ms
54,324 KB
testcase_26 AC 125 ms
54,400 KB
testcase_27 AC 112 ms
52,596 KB
testcase_28 AC 129 ms
54,056 KB
testcase_29 AC 128 ms
53,972 KB
testcase_30 AC 114 ms
53,084 KB
testcase_31 AC 131 ms
54,088 KB
testcase_32 AC 119 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;
import java.lang.StringBuilder;
import java.util.regex.Pattern;
import java.util.Arrays;


    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 j=0;j<n;j++){
                t[j] = sc.next();
            }
            

            int ans = 1;
            for(int k=0; k<n; k++){
                if(s[k].equalsIgnoreCase(t[k])){
                    ans ++;
                }else{
                    break;
                }
            }
            
            System.out.println(ans);
            System.out.println(s[ans-1]);
            System.out.println(t[ans-1]);
        }
    }
0