結果

問題 No.293 4>7の世界
ユーザー YamaKasaYamaKasa
提出日時 2018-09-09 23:30:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 4,526 ms
コンパイル使用メモリ 76,756 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-12-30 12:42:42
合計ジャッジ時間 6,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,208 KB
testcase_01 AC 130 ms
40,008 KB
testcase_02 AC 133 ms
40,904 KB
testcase_03 AC 141 ms
41,320 KB
testcase_04 AC 144 ms
41,372 KB
testcase_05 AC 131 ms
40,920 KB
testcase_06 AC 117 ms
40,136 KB
testcase_07 AC 148 ms
41,244 KB
testcase_08 AC 136 ms
41,160 KB
testcase_09 AC 144 ms
41,336 KB
testcase_10 AC 135 ms
40,860 KB
testcase_11 AC 143 ms
41,280 KB
testcase_12 AC 144 ms
41,544 KB
testcase_13 AC 143 ms
41,112 KB
testcase_14 AC 144 ms
41,444 KB
testcase_15 AC 143 ms
41,512 KB
testcase_16 AC 138 ms
41,028 KB
testcase_17 AC 151 ms
41,352 KB
testcase_18 AC 132 ms
41,216 KB
testcase_19 AC 129 ms
40,888 KB
testcase_20 AC 119 ms
40,052 KB
testcase_21 AC 123 ms
39,932 KB
testcase_22 AC 140 ms
40,176 KB
testcase_23 AC 138 ms
41,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String A = scan.next();
		String B = scan.next();
		scan.close();
		int l1 = A.length();
		int l2 = B.length();
		if(l1 > l2) {
			System.out.println(A);
		}else if(l1 < l2) {
			System.out.println(B);
		}else {
			for(int i = 0; i < l1; i++) {
				char c1 = A.charAt(i);
				char c2 = B.charAt(i);
				if(c1 == '4' && c2 == '7') {
					System.out.println(A);
					System.exit(0);
				}else if(c1 == '7' && c2 == '4') {
					System.out.println(B);
					System.exit(0);
				}else if(c1 > c2) {
					System.out.println(A);
					System.exit(0);
				}else if(c1 < c2) {
					System.out.println(B);
					System.exit(0);
				}
			}
		}

	}
}
0