結果

問題 No.293 4>7の世界
ユーザー tentententen
提出日時 2020-10-07 09:38:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,199 bytes
コンパイル時間 3,953 ms
コンパイル使用メモリ 77,076 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-07-20 03:16:13
合計ジャッジ時間 7,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,896 KB
testcase_01 AC 142 ms
54,148 KB
testcase_02 AC 133 ms
54,088 KB
testcase_03 AC 135 ms
53,744 KB
testcase_04 AC 137 ms
53,940 KB
testcase_05 AC 134 ms
53,840 KB
testcase_06 AC 130 ms
53,772 KB
testcase_07 AC 138 ms
53,956 KB
testcase_08 AC 133 ms
53,952 KB
testcase_09 AC 140 ms
53,848 KB
testcase_10 AC 136 ms
53,960 KB
testcase_11 AC 136 ms
54,080 KB
testcase_12 AC 133 ms
53,952 KB
testcase_13 AC 136 ms
53,892 KB
testcase_14 AC 133 ms
53,860 KB
testcase_15 AC 132 ms
53,808 KB
testcase_16 AC 135 ms
53,964 KB
testcase_17 AC 131 ms
54,444 KB
testcase_18 AC 136 ms
53,624 KB
testcase_19 AC 133 ms
53,844 KB
testcase_20 AC 131 ms
53,784 KB
testcase_21 AC 137 ms
54,040 KB
testcase_22 AC 133 ms
54,016 KB
testcase_23 AC 131 ms
53,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		Num a = new Num(sc.next().toCharArray());
		Num b = new Num(sc.next().toCharArray());
		if (a.compareTo(b) > 0) {
		    System.out.println(a);
		} else {
		    System.out.println(b);
		}
	}
	
	static class Num implements Comparable<Num> {
	    char[] arr;
	    
	    public Num(char[] arr) {
	        this.arr = arr;
	    }
	    
	    public int compareTo(Num another) {
	        if (arr.length == another.arr.length) {
	            for (int i = 0; i < arr.length; i++) {
	                if (arr[i] == another.arr[i]) {
	                    continue;
	                }
	                if (arr[i] == '4' && another.arr[i] == '7') {
	                    return 1;
	                } else if (arr[i] == '7' && another.arr[i] == '4') {
	                    return -1;
	                } else {
	                    return arr[i] - another.arr[i];
	                }
	            }
	            return 0;
	        } else {
	            return arr.length - another.arr.length;
	        }
	    }
	    
	    public String toString() {
	        return new String(arr);
	    }
	}
}
0