結果

問題 No.293 4>7の世界
ユーザー sue_charosue_charo
提出日時 2017-04-30 16:12:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 3,530 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-06-09 17:14:47
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,100 KB
testcase_01 AC 126 ms
54,152 KB
testcase_02 AC 129 ms
54,112 KB
testcase_03 AC 134 ms
54,336 KB
testcase_04 AC 128 ms
54,104 KB
testcase_05 AC 129 ms
54,020 KB
testcase_06 AC 130 ms
54,228 KB
testcase_07 AC 125 ms
53,892 KB
testcase_08 AC 126 ms
54,136 KB
testcase_09 AC 128 ms
54,088 KB
testcase_10 AC 130 ms
53,912 KB
testcase_11 AC 125 ms
54,012 KB
testcase_12 AC 132 ms
54,036 KB
testcase_13 AC 129 ms
54,124 KB
testcase_14 AC 128 ms
54,188 KB
testcase_15 AC 128 ms
54,148 KB
testcase_16 AC 126 ms
54,012 KB
testcase_17 AC 129 ms
54,316 KB
testcase_18 AC 127 ms
54,152 KB
testcase_19 AC 130 ms
54,192 KB
testcase_20 AC 130 ms
53,896 KB
testcase_21 AC 126 ms
54,124 KB
testcase_22 AC 128 ms
54,100 KB
testcase_23 AC 130 ms
54,028 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