結果

問題 No.293 4>7の世界
ユーザー sue_charosue_charo
提出日時 2017-04-30 16:12:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-12-30 12:26:51
合計ジャッジ時間 8,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,236 KB
testcase_01 AC 152 ms
41,204 KB
testcase_02 AC 144 ms
41,100 KB
testcase_03 AC 144 ms
41,116 KB
testcase_04 AC 146 ms
40,800 KB
testcase_05 AC 143 ms
40,880 KB
testcase_06 AC 141 ms
41,056 KB
testcase_07 AC 148 ms
41,000 KB
testcase_08 AC 144 ms
41,092 KB
testcase_09 AC 141 ms
41,220 KB
testcase_10 AC 140 ms
41,088 KB
testcase_11 AC 141 ms
40,900 KB
testcase_12 AC 139 ms
41,372 KB
testcase_13 AC 144 ms
40,980 KB
testcase_14 AC 146 ms
40,860 KB
testcase_15 AC 142 ms
40,860 KB
testcase_16 AC 141 ms
41,188 KB
testcase_17 AC 141 ms
40,948 KB
testcase_18 AC 142 ms
41,084 KB
testcase_19 AC 123 ms
40,020 KB
testcase_20 AC 145 ms
41,020 KB
testcase_21 AC 144 ms
41,216 KB
testcase_22 AC 147 ms
40,936 KB
testcase_23 AC 143 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yuki293 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        String b = sc.next();
        System.out.println(less(a, b) ? a : b);
    }
    
    public static boolean less(String a, String b) {
        char[] l_a = a.toCharArray();
        char[] l_b = b.toCharArray();
        if (l_a.length != l_b.length) {
            return l_a.length > l_b.length;
        }
        int n = l_a.length;
        for (int i = 0; i < n; i++) {
            if (l_a[i] != l_b[i]) {
                if (l_a[i] == '4' && l_b[i] == '7' || l_a[i] == '7' && l_b[i] == '4') {
                    return l_a[i] < l_b[i];
                } else {
                    return l_a[i] > l_b[i];
                }
            }
        }
        return true;
    }
}
0