結果

問題 No.293 4>7の世界
ユーザー GrenacheGrenache
提出日時 2015-10-23 22:37:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 3,452 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-06-09 16:43:39
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,184 KB
testcase_01 AC 119 ms
54,468 KB
testcase_02 AC 112 ms
54,248 KB
testcase_03 AC 109 ms
53,860 KB
testcase_04 AC 112 ms
52,984 KB
testcase_05 AC 101 ms
53,128 KB
testcase_06 AC 100 ms
54,072 KB
testcase_07 AC 106 ms
53,900 KB
testcase_08 AC 122 ms
54,152 KB
testcase_09 AC 100 ms
53,036 KB
testcase_10 AC 109 ms
53,956 KB
testcase_11 AC 106 ms
54,044 KB
testcase_12 AC 112 ms
53,988 KB
testcase_13 AC 97 ms
52,936 KB
testcase_14 AC 97 ms
52,892 KB
testcase_15 AC 109 ms
54,012 KB
testcase_16 AC 96 ms
52,712 KB
testcase_17 AC 113 ms
54,064 KB
testcase_18 AC 112 ms
54,192 KB
testcase_19 AC 112 ms
54,276 KB
testcase_20 AC 97 ms
53,000 KB
testcase_21 AC 111 ms
54,196 KB
testcase_22 AC 119 ms
54,156 KB
testcase_23 AC 112 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder293 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        char[] a = sc.next().toCharArray();
        char[] b = sc.next().toCharArray();

        if (a.length > b.length) {
        	System.out.println(a);
        } else if (a.length < b.length) {
        	System.out.println(b);
        } else {
        	for (int i = 0; i < a.length; i++) {
        		if (a[i] != b[i]) {
        			if (a[i] == '4' && b[i] == '7') {
        	        	System.out.println(a);
        	        	break;
        			} else if (a[i] == '7' && b[i] == '4') {
        	        	System.out.println(b);
        	        	break;
        			} else if (a[i] > b[i]) {
        	        	System.out.println(a);
        	        	break;
        			} else {
        	        	System.out.println(b);
        	        	break;
        			}
        		}
        	}
        }

        sc.close();
    }
}
0