結果

問題 No.293 4>7の世界
ユーザー scachescache
提出日時 2015-10-23 22:35:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 2,975 ms
コンパイル使用メモリ 76,344 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-06-09 16:42:24
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,508 KB
testcase_01 AC 118 ms
41,148 KB
testcase_02 AC 96 ms
40,204 KB
testcase_03 AC 106 ms
41,176 KB
testcase_04 AC 100 ms
40,880 KB
testcase_05 AC 104 ms
41,084 KB
testcase_06 AC 102 ms
41,044 KB
testcase_07 AC 101 ms
40,880 KB
testcase_08 AC 92 ms
39,716 KB
testcase_09 AC 108 ms
41,444 KB
testcase_10 AC 93 ms
39,988 KB
testcase_11 AC 95 ms
39,932 KB
testcase_12 AC 103 ms
40,920 KB
testcase_13 AC 95 ms
40,112 KB
testcase_14 AC 96 ms
40,140 KB
testcase_15 AC 92 ms
39,980 KB
testcase_16 AC 102 ms
41,276 KB
testcase_17 AC 103 ms
41,164 KB
testcase_18 AC 109 ms
40,852 KB
testcase_19 AC 96 ms
40,060 KB
testcase_20 AC 93 ms
39,640 KB
testcase_21 AC 109 ms
41,148 KB
testcase_22 AC 112 ms
41,148 KB
testcase_23 AC 93 ms
39,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * Created by scache on 15/10/23.
 */
public class Main293 {
    public static void main(String[] args){
        new Main293();
    }

    public Main293(){
        Scanner sc = new Scanner(System.in);
        String A = sc.next();
        String B = sc.next();

        String ret = A;
        if(A.length()!=B.length()) {
            ret = A.length() > B.length() ? A : B;
        }else{
            for(int i=0;i<A.length();i++) {
                if (A.charAt(i) == '4' && B.charAt(i) == '7' || A.charAt(i) == '7' && B.charAt(i) == '4') {
                    ret = A.charAt(i) == '4' ? A : B;
                    break;
                }

                if (A.charAt(i) != B.charAt(i)) {
                    ret = A.charAt(i) > B.charAt(i) ? A : B;
                    break;
                }
            }
        }

        System.out.println(ret);

    }

    private void solve(){

    }

}
0