結果

問題 No.293 4>7の世界
ユーザー ottfoekstottfoekst
提出日時 2015-11-08 02:18:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 4,972 ms
コンパイル使用メモリ 75,484 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-12-30 11:33:52
合計ジャッジ時間 9,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,976 KB
testcase_01 AC 140 ms
41,428 KB
testcase_02 AC 141 ms
41,100 KB
testcase_03 AC 138 ms
41,024 KB
testcase_04 AC 127 ms
39,744 KB
testcase_05 AC 121 ms
40,056 KB
testcase_06 AC 136 ms
41,192 KB
testcase_07 AC 133 ms
41,004 KB
testcase_08 AC 137 ms
40,896 KB
testcase_09 AC 125 ms
40,140 KB
testcase_10 AC 133 ms
41,180 KB
testcase_11 AC 138 ms
41,148 KB
testcase_12 AC 122 ms
40,256 KB
testcase_13 AC 135 ms
41,360 KB
testcase_14 AC 117 ms
40,192 KB
testcase_15 AC 142 ms
41,320 KB
testcase_16 AC 140 ms
40,884 KB
testcase_17 AC 136 ms
41,408 KB
testcase_18 AC 139 ms
40,760 KB
testcase_19 AC 135 ms
40,980 KB
testcase_20 AC 138 ms
41,048 KB
testcase_21 AC 141 ms
40,996 KB
testcase_22 AC 144 ms
41,028 KB
testcase_23 AC 140 ms
40,984 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