結果

問題 No.293 4>7の世界
ユーザー 37zigen37zigen
提出日時 2016-05-03 23:14:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 41,276 KB
最終ジャッジ日時 2024-12-30 12:00:53
合計ジャッジ時間 7,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,788 KB
testcase_01 AC 137 ms
40,880 KB
testcase_02 AC 132 ms
41,276 KB
testcase_03 AC 122 ms
40,048 KB
testcase_04 AC 131 ms
41,064 KB
testcase_05 AC 135 ms
40,960 KB
testcase_06 AC 111 ms
40,220 KB
testcase_07 AC 119 ms
39,944 KB
testcase_08 AC 130 ms
40,904 KB
testcase_09 AC 120 ms
40,044 KB
testcase_10 AC 117 ms
40,200 KB
testcase_11 AC 116 ms
40,004 KB
testcase_12 AC 129 ms
40,252 KB
testcase_13 AC 129 ms
40,432 KB
testcase_14 AC 136 ms
40,940 KB
testcase_15 AC 132 ms
40,184 KB
testcase_16 AC 131 ms
40,928 KB
testcase_17 AC 134 ms
40,860 KB
testcase_18 AC 130 ms
41,196 KB
testcase_19 AC 135 ms
41,216 KB
testcase_20 AC 130 ms
40,956 KB
testcase_21 AC 120 ms
39,928 KB
testcase_22 AC 137 ms
41,068 KB
testcase_23 AC 142 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		String s1=sc.next();
		String s2=sc.next();
		char[] c1=s1.toCharArray();
		char[] c2=s2.toCharArray();
		if(c1.length>c2.length){
			System.out.println(s1);
		}else if(c1.length<c2.length){
			System.out.println(s2);
		}else if(c1.length==c2.length){
			for(int i=0;i<c1.length;i++){
				if(c1[i]=='4'&&c2[i]=='7'){
					System.out.println(s1);
				}else if(c1[i]=='7'&&c2[i]=='4'){
					System.out.println(s2);
				}else if(c1[i]>c2[i]){
					System.out.println(s1);
				}else if(c1[i]<c2[i]){
					System.out.println(s2);
				}else{
					continue;
				}
				return;
			}
		}
		
	}
}
0