結果

問題 No.293 4>7の世界
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 06:14:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,608 bytes
コンパイル時間 5,005 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-12-30 12:07:38
合計ジャッジ時間 10,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,524 KB
testcase_01 AC 155 ms
41,296 KB
testcase_02 AC 150 ms
40,976 KB
testcase_03 AC 138 ms
40,468 KB
testcase_04 AC 133 ms
41,080 KB
testcase_05 AC 146 ms
40,972 KB
testcase_06 AC 140 ms
41,268 KB
testcase_07 AC 145 ms
40,928 KB
testcase_08 AC 140 ms
41,160 KB
testcase_09 AC 143 ms
41,004 KB
testcase_10 AC 125 ms
40,268 KB
testcase_11 AC 142 ms
41,184 KB
testcase_12 AC 138 ms
40,920 KB
testcase_13 AC 138 ms
41,104 KB
testcase_14 AC 140 ms
41,256 KB
testcase_15 AC 138 ms
41,084 KB
testcase_16 AC 136 ms
41,164 KB
testcase_17 AC 120 ms
39,820 KB
testcase_18 AC 129 ms
40,216 KB
testcase_19 AC 145 ms
41,116 KB
testcase_20 AC 120 ms
40,596 KB
testcase_21 AC 139 ms
40,960 KB
testcase_22 AC 136 ms
41,024 KB
testcase_23 AC 125 ms
40,632 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