結果
問題 | No.547 未知の言語 |
ユーザー | yamax3232 |
提出日時 | 2018-03-16 12:33:26 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 2,714 ms |
コンパイル使用メモリ | 75,172 KB |
実行使用メモリ | 41,984 KB |
最終ジャッジ日時 | 2024-06-26 03:06:11 |
合計ジャッジ時間 | 8,107 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
ソースコード
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(); s2[i]=kb.next(); } int num=0; for(int i=0;i<3;i++){ if(s1[i]!=s2[i]){ num=i; } } System.out.println(n); System.out.println(s1[num]); System.out.println(s2[num]); } }