結果

問題 No.293 4>7の世界
ユーザー kou6839kou6839
提出日時 2015-10-24 01:26:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 3,198 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-12-30 11:22:27
合計ジャッジ時間 6,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,900 KB
testcase_01 AC 122 ms
40,320 KB
testcase_02 AC 129 ms
40,796 KB
testcase_03 AC 131 ms
40,836 KB
testcase_04 AC 128 ms
41,076 KB
testcase_05 AC 131 ms
41,076 KB
testcase_06 AC 133 ms
40,820 KB
testcase_07 AC 129 ms
40,660 KB
testcase_08 AC 132 ms
40,868 KB
testcase_09 AC 121 ms
40,684 KB
testcase_10 AC 133 ms
41,120 KB
testcase_11 AC 132 ms
40,888 KB
testcase_12 AC 127 ms
40,728 KB
testcase_13 AC 120 ms
39,748 KB
testcase_14 AC 127 ms
39,976 KB
testcase_15 AC 118 ms
40,124 KB
testcase_16 AC 125 ms
40,844 KB
testcase_17 AC 131 ms
40,960 KB
testcase_18 AC 132 ms
39,848 KB
testcase_19 AC 133 ms
41,296 KB
testcase_20 AC 118 ms
39,752 KB
testcase_21 AC 136 ms
40,944 KB
testcase_22 AC 130 ms
40,820 KB
testcase_23 AC 129 ms
41,060 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