結果

問題 No.293 4>7の世界
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-09 19:15:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-06-09 17:15:56
合計ジャッジ時間 5,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,956 KB
testcase_01 AC 95 ms
40,184 KB
testcase_02 AC 106 ms
40,508 KB
testcase_03 AC 104 ms
41,004 KB
testcase_04 AC 112 ms
41,212 KB
testcase_05 AC 114 ms
41,248 KB
testcase_06 AC 102 ms
40,996 KB
testcase_07 AC 105 ms
40,812 KB
testcase_08 AC 96 ms
40,060 KB
testcase_09 AC 112 ms
41,176 KB
testcase_10 AC 104 ms
41,148 KB
testcase_11 AC 115 ms
40,784 KB
testcase_12 AC 92 ms
40,060 KB
testcase_13 AC 93 ms
39,984 KB
testcase_14 AC 101 ms
40,984 KB
testcase_15 AC 99 ms
41,148 KB
testcase_16 AC 112 ms
40,692 KB
testcase_17 AC 100 ms
40,800 KB
testcase_18 AC 102 ms
41,060 KB
testcase_19 AC 90 ms
39,624 KB
testcase_20 AC 101 ms
40,768 KB
testcase_21 AC 102 ms
40,876 KB
testcase_22 AC 102 ms
41,372 KB
testcase_23 AC 100 ms
41,184 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