結果

問題 No.293 4>7の世界
ユーザー Mcpu3Mcpu3
提出日時 2018-10-16 20:03:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-06-09 17:21:30
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,476 KB
testcase_01 AC 102 ms
40,960 KB
testcase_02 AC 91 ms
40,188 KB
testcase_03 AC 102 ms
41,012 KB
testcase_04 AC 89 ms
39,708 KB
testcase_05 AC 113 ms
41,212 KB
testcase_06 AC 103 ms
41,000 KB
testcase_07 AC 115 ms
41,372 KB
testcase_08 AC 110 ms
40,652 KB
testcase_09 AC 103 ms
40,760 KB
testcase_10 AC 100 ms
40,736 KB
testcase_11 AC 103 ms
41,336 KB
testcase_12 AC 101 ms
40,932 KB
testcase_13 AC 106 ms
41,004 KB
testcase_14 AC 103 ms
41,336 KB
testcase_15 AC 103 ms
41,088 KB
testcase_16 AC 107 ms
41,080 KB
testcase_17 AC 100 ms
41,096 KB
testcase_18 AC 101 ms
40,940 KB
testcase_19 AC 102 ms
40,908 KB
testcase_20 AC 94 ms
40,112 KB
testcase_21 AC 102 ms
40,828 KB
testcase_22 AC 101 ms
40,752 KB
testcase_23 AC 100 ms
41,196 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