結果

問題 No.293 4>7の世界
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 20:08:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 3,742 ms
コンパイル使用メモリ 77,404 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-06-09 17:07:14
合計ジャッジ時間 6,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,088 KB
testcase_01 AC 103 ms
40,692 KB
testcase_02 AC 105 ms
41,216 KB
testcase_03 AC 100 ms
40,524 KB
testcase_04 AC 95 ms
39,984 KB
testcase_05 AC 94 ms
40,092 KB
testcase_06 AC 111 ms
41,212 KB
testcase_07 AC 91 ms
39,724 KB
testcase_08 AC 95 ms
39,984 KB
testcase_09 AC 105 ms
41,240 KB
testcase_10 AC 105 ms
40,980 KB
testcase_11 AC 105 ms
40,752 KB
testcase_12 AC 106 ms
41,096 KB
testcase_13 AC 105 ms
40,940 KB
testcase_14 AC 108 ms
40,764 KB
testcase_15 AC 104 ms
40,776 KB
testcase_16 AC 106 ms
40,992 KB
testcase_17 AC 95 ms
40,100 KB
testcase_18 AC 109 ms
41,032 KB
testcase_19 AC 110 ms
41,456 KB
testcase_20 AC 98 ms
40,348 KB
testcase_21 AC 91 ms
39,980 KB
testcase_22 AC 114 ms
41,116 KB
testcase_23 AC 89 ms
39,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise80{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String one = sc.next();
    String two = sc.next();

    if(one.length() == two.length()){
      String[] arrayOne = one.split("");
      String[] arrayTwo = two.split("");

      compare(one, arrayOne, two, arrayTwo);
    }else{
      if (one.length() > two.length()){
        System.out.println(one);
      }else{
        System.out.println(two);
      }
    }
  }

  private static void compare(String one, String[] arrayOne, String two, String[] arrayTwo){
    for(int i = 0; i < arrayOne.length; i++){
      if(arrayOne[i].equals("4") && arrayTwo[i].equals("7")){
        arrayOne[i] = "7";
        arrayTwo[i] = "4";
      }else if(arrayOne[i].equals("7") && arrayTwo[i].equals("4")){
        arrayOne[i] = "4";
        arrayTwo[i] = "7";
      }
    }

    String newOne = String.join("", arrayOne);
    String newTwo = String.join("", arrayTwo);

    if(Integer.parseInt(newOne) > Integer.parseInt(newTwo)){
      System.out.println(one);
    }else{
      System.out.println(two);
    }
  }
}
0