結果

問題 No.293 4>7の世界
ユーザー 37zigen37zigen
提出日時 2016-05-03 23:14:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 77,404 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-06-09 17:03:32
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,828 KB
testcase_01 AC 101 ms
40,720 KB
testcase_02 AC 90 ms
39,884 KB
testcase_03 AC 104 ms
40,956 KB
testcase_04 AC 102 ms
40,848 KB
testcase_05 AC 100 ms
40,700 KB
testcase_06 AC 89 ms
39,724 KB
testcase_07 AC 89 ms
39,544 KB
testcase_08 AC 98 ms
40,872 KB
testcase_09 AC 100 ms
40,956 KB
testcase_10 AC 101 ms
40,916 KB
testcase_11 AC 88 ms
39,796 KB
testcase_12 AC 104 ms
41,016 KB
testcase_13 AC 102 ms
41,232 KB
testcase_14 AC 101 ms
40,968 KB
testcase_15 AC 107 ms
41,288 KB
testcase_16 AC 104 ms
41,084 KB
testcase_17 AC 107 ms
41,148 KB
testcase_18 AC 106 ms
41,080 KB
testcase_19 AC 110 ms
40,924 KB
testcase_20 AC 106 ms
41,068 KB
testcase_21 AC 101 ms
41,032 KB
testcase_22 AC 101 ms
41,148 KB
testcase_23 AC 102 ms
40,992 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