結果

問題 No.293 4>7の世界
ユーザー Mcpu3Mcpu3
提出日時 2018-10-16 20:03:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 3,919 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-12-30 12:43:53
合計ジャッジ時間 7,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
40,992 KB
testcase_01 AC 126 ms
40,056 KB
testcase_02 AC 145 ms
40,956 KB
testcase_03 AC 138 ms
40,712 KB
testcase_04 AC 138 ms
41,028 KB
testcase_05 AC 137 ms
40,856 KB
testcase_06 AC 121 ms
39,804 KB
testcase_07 AC 141 ms
41,108 KB
testcase_08 AC 140 ms
41,048 KB
testcase_09 AC 137 ms
41,160 KB
testcase_10 AC 147 ms
41,016 KB
testcase_11 AC 140 ms
41,036 KB
testcase_12 AC 148 ms
41,312 KB
testcase_13 AC 151 ms
40,980 KB
testcase_14 AC 129 ms
40,024 KB
testcase_15 AC 142 ms
40,872 KB
testcase_16 AC 128 ms
40,468 KB
testcase_17 AC 140 ms
40,852 KB
testcase_18 AC 140 ms
41,048 KB
testcase_19 AC 134 ms
40,812 KB
testcase_20 AC 133 ms
41,020 KB
testcase_21 AC 140 ms
40,724 KB
testcase_22 AC 142 ms
41,224 KB
testcase_23 AC 145 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String A = sc.next(), B = sc.next();
		sc.close();
		if (A.length() > B.length()) System.out.print(A);
		else if (A.length() < B.length()) System.out.print(B);
		else {
			for (int i = 0; i < A.length(); ++i) {
				if (A.charAt(i) == '4' && B.charAt(i) == '7') {
					System.out.print(A);
					break;
				}
				else if (A.charAt(i) == '7' && B.charAt(i) == '4') {
					System.out.print(B);
					break;
				}
				else if (A.charAt(i) > B.charAt(i)) {
					System.out.print(A);
					break;
				}
				else if (A.charAt(i) < B.charAt(i)) {
					System.out.print(B);
					break;
				}
			}
		}
	}
}
0