結果

問題 No.293 4>7の世界
ユーザー ottfoekstottfoekst
提出日時 2015-11-08 02:18:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 3,027 ms
コンパイル使用メモリ 75,620 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-06-09 16:52:12
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,268 KB
testcase_01 AC 91 ms
39,628 KB
testcase_02 AC 96 ms
40,012 KB
testcase_03 AC 92 ms
39,984 KB
testcase_04 AC 103 ms
41,108 KB
testcase_05 AC 104 ms
41,020 KB
testcase_06 AC 96 ms
40,188 KB
testcase_07 AC 105 ms
40,940 KB
testcase_08 AC 103 ms
40,944 KB
testcase_09 AC 95 ms
39,968 KB
testcase_10 AC 108 ms
41,008 KB
testcase_11 AC 104 ms
41,084 KB
testcase_12 AC 97 ms
40,236 KB
testcase_13 AC 106 ms
41,008 KB
testcase_14 AC 104 ms
41,096 KB
testcase_15 AC 108 ms
41,244 KB
testcase_16 AC 94 ms
40,092 KB
testcase_17 AC 104 ms
40,760 KB
testcase_18 AC 97 ms
40,140 KB
testcase_19 AC 95 ms
39,832 KB
testcase_20 AC 95 ms
39,804 KB
testcase_21 AC 99 ms
41,072 KB
testcase_22 AC 112 ms
41,340 KB
testcase_23 AC 115 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No293 {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		String[] numList = scanner.nextLine().split(" ");
		System.out.println(compare(numList[0], numList[1]) > 0 ? numList[0] : numList[1]);
		scanner.close();
	}
		
	private static int compare(String str1, String str2) {
		if(str1.length() > str2.length()) {
			return 1;
		}
		else if(str1.length() < str2.length()) {
			return -1;
		}
		else {
			for(int index = 0; index < str1.length(); index++) {
				char str1Char = str1.charAt(index);
				char str2Char = str2.charAt(index);
				if(str1Char == '4' && str2Char == '7' ) {
					return 1;
				}
				else if(str1Char == '7' && str2Char == '4') {
					return -1;
				}
				else {
					if(str1Char != str2Char) {
						return str1Char - str2Char;
					}
				}
			}
			return 0;
		}
	}
}
0