結果

問題 No.293 4>7の世界
ユーザー nCk_cvnCk_cv
提出日時 2015-10-27 19:29:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-06-09 16:48:52
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,016 KB
testcase_01 AC 107 ms
41,020 KB
testcase_02 AC 103 ms
40,928 KB
testcase_03 AC 105 ms
41,128 KB
testcase_04 AC 107 ms
41,392 KB
testcase_05 AC 105 ms
41,016 KB
testcase_06 AC 92 ms
39,932 KB
testcase_07 AC 97 ms
40,056 KB
testcase_08 AC 94 ms
40,052 KB
testcase_09 AC 97 ms
40,024 KB
testcase_10 AC 109 ms
41,208 KB
testcase_11 AC 94 ms
39,804 KB
testcase_12 AC 95 ms
40,112 KB
testcase_13 AC 89 ms
39,472 KB
testcase_14 AC 104 ms
41,208 KB
testcase_15 AC 100 ms
40,356 KB
testcase_16 AC 95 ms
39,964 KB
testcase_17 AC 104 ms
41,088 KB
testcase_18 AC 108 ms
41,272 KB
testcase_19 AC 107 ms
41,224 KB
testcase_20 AC 104 ms
41,004 KB
testcase_21 AC 105 ms
40,820 KB
testcase_22 AC 103 ms
41,136 KB
testcase_23 AC 111 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.awt.geom.*;
import java.io.*;
    
    
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();
		int ans = compare(a,b);
		
		if(ans > 0) {
			System.out.println(a);
		}
		else if (ans < 0){
			System.out.println(b);
		}
	}
	
	static int compare(String a, String b) {
		if(a.equals(b)) return 0;
		if(a.length() > b.length()) return 1;
		else if(a.length() < b.length()) return -1;
		else {
			for(int i = 0; i < a.length(); i++) {
				if(a.charAt(i) == b.charAt(i)) continue;
				if(a.charAt(i) == '4' && b.charAt(i) == '7') {
					return 1;
				}
				if(a.charAt(i) == '7' && b.charAt(i) == '4') {
					return -1;
				}
				return Integer.parseInt(String.valueOf(String.valueOf(a.charAt(i)))) - Integer.parseInt(String.valueOf(String.valueOf(b.charAt(i))));
			}
		}
		return 0;
		
	}
	
	
}
0