結果

問題 No.293 4>7の世界
ユーザー spaciaspacia
提出日時 2016-01-09 10:01:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 3,270 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 36,996 KB
最終ジャッジ日時 2024-06-09 16:58:13
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,792 KB
testcase_01 AC 47 ms
36,824 KB
testcase_02 AC 45 ms
36,996 KB
testcase_03 AC 44 ms
36,992 KB
testcase_04 AC 44 ms
36,976 KB
testcase_05 AC 44 ms
36,568 KB
testcase_06 AC 44 ms
36,984 KB
testcase_07 AC 46 ms
36,924 KB
testcase_08 AC 46 ms
36,880 KB
testcase_09 AC 45 ms
36,888 KB
testcase_10 AC 45 ms
36,836 KB
testcase_11 AC 45 ms
36,672 KB
testcase_12 AC 44 ms
36,652 KB
testcase_13 AC 45 ms
36,660 KB
testcase_14 AC 46 ms
36,632 KB
testcase_15 AC 45 ms
36,532 KB
testcase_16 AC 44 ms
36,944 KB
testcase_17 AC 46 ms
36,992 KB
testcase_18 AC 45 ms
36,796 KB
testcase_19 AC 45 ms
36,580 KB
testcase_20 AC 46 ms
36,588 KB
testcase_21 AC 46 ms
36,680 KB
testcase_22 AC 45 ms
36,752 KB
testcase_23 AC 45 ms
36,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static String max (String a , String b) {
		if (a.length() != b.length())
			return a.length() > b.length() ? a : b;
		for (int i = 0; i < a.length(); i++) {
			int n = a.charAt(i) - '0';
			int m = b.charAt(i) - '0';
			if (n == 4 && m == 7) {
				return a;
			} else if (n == 7 && m == 4) {
				return b;
			} else if (n != m) {
				return n > m ? a : b;
			}
		}
		return a;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		
		out(max(line[0] , line[1]));
	}
}
0