結果

問題 No.293 4>7の世界
ユーザー jp_stejp_ste
提出日時 2016-05-15 04:15:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-06-09 17:05:05
合計ジャッジ時間 5,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,204 KB
testcase_01 AC 104 ms
40,908 KB
testcase_02 AC 95 ms
40,188 KB
testcase_03 AC 104 ms
40,740 KB
testcase_04 AC 92 ms
39,756 KB
testcase_05 AC 94 ms
39,984 KB
testcase_06 AC 95 ms
40,112 KB
testcase_07 AC 103 ms
40,876 KB
testcase_08 AC 95 ms
40,240 KB
testcase_09 AC 97 ms
40,104 KB
testcase_10 AC 105 ms
40,984 KB
testcase_11 AC 110 ms
41,240 KB
testcase_12 AC 109 ms
40,792 KB
testcase_13 AC 104 ms
41,008 KB
testcase_14 AC 100 ms
40,932 KB
testcase_15 AC 93 ms
40,320 KB
testcase_16 AC 102 ms
41,072 KB
testcase_17 AC 112 ms
41,084 KB
testcase_18 AC 109 ms
41,084 KB
testcase_19 AC 118 ms
41,332 KB
testcase_20 AC 115 ms
40,984 KB
testcase_21 AC 95 ms
39,996 KB
testcase_22 AC 103 ms
40,832 KB
testcase_23 AC 95 ms
40,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            String a = scan.next();
            String b = scan.next();
            
            if(a.length() == b.length() ) {
                for(int i=0; i<a.length(); i++) {
                    char chA = a.charAt(i);
                    char chB = b.charAt(i);
                    if(chA == chB) {
                        continue;
                    } else {
                        if(chA == '4' && chB == '7') {
                            System.out.println(a);
                        } else if(chA == '7' && chB == '4') {
                            System.out.println(b);
                        } else {
                            System.out.println(chA > chB? a:b);
                        }
                        break;
                    }
                }
                
            } else if(a.length() > b.length()) {
                System.out.println(a);
            } else {
                System.out.println(b);
            }
        }
    }
}
0