結果

問題 No.293 4>7の世界
ユーザー mits58mits58
提出日時 2016-05-05 15:24:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,552 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-12-30 12:03:32
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
40,968 KB
testcase_01 AC 135 ms
41,204 KB
testcase_02 AC 137 ms
41,096 KB
testcase_03 AC 121 ms
39,800 KB
testcase_04 AC 127 ms
39,992 KB
testcase_05 AC 124 ms
40,924 KB
testcase_06 AC 131 ms
39,716 KB
testcase_07 AC 116 ms
39,808 KB
testcase_08 AC 131 ms
41,080 KB
testcase_09 AC 137 ms
41,004 KB
testcase_10 AC 137 ms
41,156 KB
testcase_11 AC 123 ms
40,200 KB
testcase_12 AC 114 ms
39,952 KB
testcase_13 AC 128 ms
40,984 KB
testcase_14 AC 136 ms
41,224 KB
testcase_15 AC 136 ms
41,372 KB
testcase_16 AC 117 ms
40,224 KB
testcase_17 AC 134 ms
41,020 KB
testcase_18 AC 145 ms
41,068 KB
testcase_19 AC 132 ms
41,084 KB
testcase_20 AC 139 ms
41,076 KB
testcase_21 AC 126 ms
40,940 KB
testcase_22 AC 142 ms
41,396 KB
testcase_23 AC 131 ms
40,960 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