結果

問題 No.293 4>7の世界
ユーザー kou6839kou6839
提出日時 2015-10-24 01:26:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 77,528 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-06-09 16:47:07
合計ジャッジ時間 5,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
53,036 KB
testcase_01 AC 108 ms
54,184 KB
testcase_02 AC 116 ms
54,164 KB
testcase_03 AC 115 ms
53,888 KB
testcase_04 AC 96 ms
52,912 KB
testcase_05 AC 117 ms
54,220 KB
testcase_06 AC 100 ms
54,392 KB
testcase_07 AC 101 ms
53,380 KB
testcase_08 AC 109 ms
54,400 KB
testcase_09 AC 101 ms
52,704 KB
testcase_10 AC 110 ms
54,084 KB
testcase_11 AC 102 ms
53,324 KB
testcase_12 AC 111 ms
53,984 KB
testcase_13 AC 101 ms
52,800 KB
testcase_14 AC 117 ms
54,176 KB
testcase_15 AC 113 ms
54,192 KB
testcase_16 AC 115 ms
54,148 KB
testcase_17 AC 111 ms
54,060 KB
testcase_18 AC 114 ms
54,072 KB
testcase_19 AC 98 ms
53,080 KB
testcase_20 AC 120 ms
54,208 KB
testcase_21 AC 114 ms
53,892 KB
testcase_22 AC 99 ms
52,968 KB
testcase_23 AC 98 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		String a = sc.next();
		String b = sc.next();
		
		if(a.length()<b.length()){
			System.out.println(b);
		}else if(a.length()>b.length()){
			System.out.println(a);
		}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'){
					System.out.println(a);
				}else if(a.charAt(i)=='7'&&b.charAt(i)=='4'){
					System.out.println(b);
					
				}else{
					if((int)a.charAt(i)<(int)b.charAt(i)){
						System.out.println(b);
					}else{
						System.out.println(a);
					}
				}
				return;
			}
		}
	}
}
0