結果

問題 No.293 4>7の世界
ユーザー atkrymatkrym
提出日時 2016-10-19 17:14:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,056 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 77,592 KB
実行使用メモリ 46,276 KB
最終ジャッジ日時 2024-12-30 12:16:37
合計ジャッジ時間 7,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
44,688 KB
testcase_01 AC 155 ms
44,300 KB
testcase_02 AC 154 ms
44,164 KB
testcase_03 AC 132 ms
46,276 KB
testcase_04 AC 131 ms
44,160 KB
testcase_05 AC 137 ms
44,308 KB
testcase_06 AC 116 ms
43,268 KB
testcase_07 AC 133 ms
44,436 KB
testcase_08 AC 138 ms
44,060 KB
testcase_09 AC 135 ms
44,340 KB
testcase_10 AC 127 ms
44,100 KB
testcase_11 AC 135 ms
44,428 KB
testcase_12 AC 131 ms
44,340 KB
testcase_13 AC 134 ms
44,292 KB
testcase_14 AC 149 ms
44,460 KB
testcase_15 AC 139 ms
44,332 KB
testcase_16 AC 142 ms
44,468 KB
testcase_17 AC 141 ms
44,236 KB
testcase_18 AC 138 ms
44,288 KB
testcase_19 AC 115 ms
43,296 KB
testcase_20 AC 136 ms
44,436 KB
testcase_21 AC 130 ms
44,244 KB
testcase_22 AC 129 ms
44,056 KB
testcase_23 AC 131 ms
44,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String a = sc.next();
        String b = sc.next();
        int la = a.length();
        int lb = b.length();
        if (la > lb) {
            System.out.println(a);
            return;
        } else if (lb > la) {
            System.out.println(b);
            return;
        }
        
        for (int i = 0;i < la;i++) {
            int ai = Integer.parseInt(a.substring(i,i+1));
            int bi = Integer.parseInt(b.substring(i,i+1));
            if (ai == bi) continue;
            if (ai == 4 && bi == 7) {
                System.out.println(a);
            } else if (ai == 7 && bi == 4) {
                System.out.println(b);
            } else {
                if (ai > bi) {
                    System.out.println(a);
                } else if (bi > ai) {
                    System.out.println(b);
                }
            }
            return;
        }
    }
}
0