結果

問題 No.293 4>7の世界
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-20 12:35:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 2,762 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-12-30 12:45:08
合計ジャッジ時間 6,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,032 KB
testcase_01 AC 139 ms
41,304 KB
testcase_02 AC 146 ms
40,936 KB
testcase_03 AC 143 ms
41,064 KB
testcase_04 AC 140 ms
41,200 KB
testcase_05 AC 140 ms
41,256 KB
testcase_06 AC 142 ms
41,460 KB
testcase_07 AC 128 ms
39,872 KB
testcase_08 AC 133 ms
40,600 KB
testcase_09 AC 125 ms
40,168 KB
testcase_10 AC 124 ms
40,064 KB
testcase_11 AC 138 ms
41,068 KB
testcase_12 AC 135 ms
41,000 KB
testcase_13 AC 143 ms
41,040 KB
testcase_14 AC 145 ms
41,156 KB
testcase_15 AC 132 ms
40,308 KB
testcase_16 AC 126 ms
40,332 KB
testcase_17 AC 142 ms
41,192 KB
testcase_18 AC 146 ms
41,156 KB
testcase_19 AC 138 ms
40,232 KB
testcase_20 AC 142 ms
41,284 KB
testcase_21 AC 139 ms
40,820 KB
testcase_22 AC 137 ms
41,288 KB
testcase_23 AC 128 ms
40,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int a=scanner.nextInt();
		int b=scanner.nextInt();
		String sa=String.valueOf(a);
		String sb=String.valueOf(b);
		if(sa.length()>sb.length()){
			System.out.println(sa);
		}else if(sa.length()<sb.length()){
			System.out.println(sb);
		}else{
			for(int i=0;i<sa.length();i++){
				int ta=sa.charAt(i)-'0';
				int tb=sb.charAt(i)-'0';
				if((ta>tb&&!(ta==7&&tb==4))||(ta==4&&tb==7)){
					System.out.println(sa);
					return;
				}else if((tb>ta&&!(ta==4&&tb==7))||(ta==7&&tb==4)){
					System.out.println(sb);
					return;
				}
			}
		}
		
	}
}
0