結果

問題 No.293 4>7の世界
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-09 19:15:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-12-30 12:30:26
合計ジャッジ時間 7,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
40,892 KB
testcase_01 AC 139 ms
40,968 KB
testcase_02 AC 146 ms
41,092 KB
testcase_03 AC 146 ms
40,944 KB
testcase_04 AC 145 ms
41,076 KB
testcase_05 AC 143 ms
40,940 KB
testcase_06 AC 144 ms
41,236 KB
testcase_07 AC 147 ms
41,080 KB
testcase_08 AC 144 ms
40,916 KB
testcase_09 AC 146 ms
40,880 KB
testcase_10 AC 146 ms
41,080 KB
testcase_11 AC 128 ms
39,964 KB
testcase_12 AC 146 ms
40,948 KB
testcase_13 AC 147 ms
40,872 KB
testcase_14 AC 144 ms
41,076 KB
testcase_15 AC 146 ms
41,032 KB
testcase_16 AC 145 ms
40,884 KB
testcase_17 AC 133 ms
40,372 KB
testcase_18 AC 124 ms
39,932 KB
testcase_19 AC 144 ms
40,992 KB
testcase_20 AC 140 ms
41,180 KB
testcase_21 AC 145 ms
40,976 KB
testcase_22 AC 144 ms
40,944 KB
testcase_23 AC 145 ms
41,044 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 ans = "";
    if(a.length() > b.length()) {
      ans = a;
    } else if(a.length() < b.length()) {
      ans = b;
    } else {
      for(int i = 0; i < a.length(); i++) {
        int num1 = Integer.parseInt(String.valueOf(a.charAt(i)));
        int num2 = Integer.parseInt(String.valueOf(b.charAt(i)));
        if(num1 > num2) {
          if(num1 == 7 && num2 == 4) {
            ans = b;
          } else {
            ans = a;
          }
          break;
        } else if(num1 < num2) {
          if(num1 == 4 && num2 == 7) {
            ans = a;
          } else {
            ans = b;
          }
          break;
        }
      }
    }
    System.out.println(ans);
  }
}
0