結果

問題 No.293 4>7の世界
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 22:07:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 3,597 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-09 17:09:40
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,896 KB
testcase_01 AC 116 ms
53,824 KB
testcase_02 AC 122 ms
54,184 KB
testcase_03 AC 122 ms
53,952 KB
testcase_04 AC 121 ms
54,288 KB
testcase_05 AC 122 ms
54,132 KB
testcase_06 AC 111 ms
53,960 KB
testcase_07 AC 117 ms
54,080 KB
testcase_08 AC 115 ms
54,028 KB
testcase_09 AC 116 ms
53,936 KB
testcase_10 AC 115 ms
54,040 KB
testcase_11 AC 119 ms
53,824 KB
testcase_12 AC 117 ms
54,228 KB
testcase_13 AC 119 ms
53,948 KB
testcase_14 AC 103 ms
53,032 KB
testcase_15 AC 118 ms
54,320 KB
testcase_16 AC 114 ms
54,168 KB
testcase_17 AC 96 ms
52,664 KB
testcase_18 AC 123 ms
54,308 KB
testcase_19 AC 114 ms
54,004 KB
testcase_20 AC 113 ms
54,076 KB
testcase_21 AC 114 ms
54,152 KB
testcase_22 AC 115 ms
54,048 KB
testcase_23 AC 113 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		String s1 = sc.next(), s2 = sc.next();
		char c1, c2;
		if (s1.length() < s2.length()) {
			System.out.println(s2);
			return;
		} else if (s1.length() > s2.length()) {
			System.out.println(s1);
			return;
		} else {
			for (int i = 0; i < s1.length(); i++) {
				c1 = s1.charAt(i);
				c2 = s2.charAt(i);
				if (c1 == '4' && c2 == '7') {
					System.out.println(s1);
					return;
				} else if (c1 == '7' && c2 == '4') {
					System.out.println(s2);
					return;
				} else if (c1 > c2) {
					System.out.println(s1);
					return;
				} else if (c1 < c2) {
					System.out.println(s2);
					return;
				}
			}
		}
	}
}
0