結果

問題 No.293 4>7の世界
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 06:14:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 1,608 bytes
コンパイル時間 4,091 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 41,176 KB
最終ジャッジ日時 2024-06-09 17:06:38
合計ジャッジ時間 6,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,864 KB
testcase_01 AC 107 ms
40,096 KB
testcase_02 AC 103 ms
40,904 KB
testcase_03 AC 103 ms
41,052 KB
testcase_04 AC 102 ms
40,968 KB
testcase_05 AC 97 ms
40,204 KB
testcase_06 AC 95 ms
40,112 KB
testcase_07 AC 99 ms
40,888 KB
testcase_08 AC 103 ms
41,116 KB
testcase_09 AC 105 ms
41,176 KB
testcase_10 AC 105 ms
41,076 KB
testcase_11 AC 97 ms
40,192 KB
testcase_12 AC 94 ms
40,236 KB
testcase_13 AC 103 ms
40,896 KB
testcase_14 AC 108 ms
40,980 KB
testcase_15 AC 104 ms
41,020 KB
testcase_16 AC 100 ms
39,960 KB
testcase_17 AC 106 ms
41,136 KB
testcase_18 AC 104 ms
41,020 KB
testcase_19 AC 103 ms
40,892 KB
testcase_20 AC 93 ms
39,868 KB
testcase_21 AC 92 ms
40,088 KB
testcase_22 AC 101 ms
40,788 KB
testcase_23 AC 107 ms
41,012 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{
      String longer = "";
      String shorter = "";
      if (one.length() > two.length()){
        longer = one;
        shorter = two;
      }else{
        shorter = one;
        longer = two;
      }

      String[] arrayOne = longer.split("");
      String[] arrayTwo = new String[longer.length()];
      String[] x = shorter.split("");
      int y = arrayTwo.length - x.length;
      for(int i = 0; i < arrayTwo.length; i++){
        if(i < y){
          arrayTwo[i] = "0";
        }else{
          arrayTwo[i] = x[i - y];
        }
      }
      compare(longer, arrayOne, shorter, arrayTwo);
    }
  }

  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