結果

問題 No.293 4>7の世界
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-09 19:04:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 2,734 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-10-07 04:51:49
合計ジャッジ時間 5,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,820 KB
testcase_01 AC 123 ms
53,868 KB
testcase_02 AC 120 ms
53,824 KB
testcase_03 WA -
testcase_04 AC 124 ms
54,000 KB
testcase_05 WA -
testcase_06 AC 109 ms
52,756 KB
testcase_07 AC 122 ms
53,732 KB
testcase_08 AC 117 ms
53,864 KB
testcase_09 WA -
testcase_10 AC 119 ms
53,884 KB
testcase_11 AC 119 ms
53,864 KB
testcase_12 AC 122 ms
54,000 KB
testcase_13 AC 104 ms
52,500 KB
testcase_14 AC 117 ms
53,896 KB
testcase_15 WA -
testcase_16 AC 112 ms
54,580 KB
testcase_17 AC 123 ms
54,100 KB
testcase_18 AC 105 ms
52,344 KB
testcase_19 AC 116 ms
53,724 KB
testcase_20 AC 118 ms
54,048 KB
testcase_21 AC 117 ms
53,828 KB
testcase_22 AC 108 ms
52,600 KB
testcase_23 AC 111 ms
53,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String a = sc.next();
    String b = sc.next();
    String A = "";
    String B = "";
    for(int i = 0; i < a.length(); i++) {
      char c = a.charAt(i);
      if(c == '4') A += "7";
      if(c == '7') A += "4";
      if(c != '4' && c != '7') A += String.valueOf(c);
    }
    for(int i = 0; i < b.length(); i++) {
      char c = b.charAt(i);
      if(c == '4') B += "7";
      if(c == '7') B += "4";
      if(c != '4' && c != '7') B += String.valueOf(c);
    }
    String ans = a;
    if(Long.parseLong(A) < Long.parseLong(B)) ans = b;
    System.out.println(ans);
  }
}
0