結果

問題 No.293 4>7の世界
ユーザー YamaKasaYamaKasa
提出日時 2018-09-09 23:30:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-06-09 17:21:07
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,900 KB
testcase_01 AC 107 ms
54,148 KB
testcase_02 AC 111 ms
54,032 KB
testcase_03 AC 101 ms
53,296 KB
testcase_04 AC 110 ms
53,264 KB
testcase_05 AC 115 ms
54,036 KB
testcase_06 AC 114 ms
54,184 KB
testcase_07 AC 103 ms
53,276 KB
testcase_08 AC 104 ms
52,880 KB
testcase_09 AC 117 ms
54,156 KB
testcase_10 AC 99 ms
53,028 KB
testcase_11 AC 120 ms
54,560 KB
testcase_12 AC 115 ms
54,116 KB
testcase_13 AC 106 ms
53,196 KB
testcase_14 AC 116 ms
54,160 KB
testcase_15 AC 117 ms
53,128 KB
testcase_16 AC 110 ms
53,032 KB
testcase_17 AC 123 ms
54,572 KB
testcase_18 AC 120 ms
54,328 KB
testcase_19 AC 115 ms
54,100 KB
testcase_20 AC 112 ms
54,240 KB
testcase_21 AC 96 ms
52,988 KB
testcase_22 AC 101 ms
53,188 KB
testcase_23 AC 105 ms
53,096 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