結果

問題 No.293 4>7の世界
ユーザー mits58mits58
提出日時 2016-05-05 15:24:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-06-09 17:04:59
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,960 KB
testcase_01 AC 109 ms
53,948 KB
testcase_02 AC 111 ms
54,072 KB
testcase_03 AC 111 ms
53,880 KB
testcase_04 AC 110 ms
53,952 KB
testcase_05 AC 110 ms
53,940 KB
testcase_06 AC 118 ms
54,136 KB
testcase_07 AC 114 ms
54,144 KB
testcase_08 AC 115 ms
53,924 KB
testcase_09 AC 103 ms
53,008 KB
testcase_10 AC 115 ms
53,904 KB
testcase_11 AC 100 ms
54,008 KB
testcase_12 AC 100 ms
53,040 KB
testcase_13 AC 103 ms
52,756 KB
testcase_14 AC 99 ms
53,004 KB
testcase_15 AC 111 ms
54,184 KB
testcase_16 AC 113 ms
53,816 KB
testcase_17 AC 110 ms
53,964 KB
testcase_18 AC 118 ms
54,364 KB
testcase_19 AC 112 ms
54,104 KB
testcase_20 AC 111 ms
53,988 KB
testcase_21 AC 113 ms
53,876 KB
testcase_22 AC 109 ms
54,072 KB
testcase_23 AC 112 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	String a=sc.next();
        	String b=sc.next();
        	if(a.length()>b.length()) System.out.println(a);
        	else if(a.length()<b.length()) System.out.println(b);
        	else{
        		for(int i=0;i<a.length();i++){
        			if(a.charAt(i)==b.charAt(i)) continue;
        			else{
        				int ka=a.charAt(i)-'0';
        				int kb=b.charAt(i)-'0';
        				if(ka>kb){
        					if(ka==7 && kb==4) System.out.println(b);
        					else System.out.println(a);
        				}
        				else{
        					if(kb==7 && ka==4) System.out.println(a);
        					else System.out.println(b);
        				}
        				break;
        			}
        		}
        	}
        }
    }
}
0