結果

問題 No.293 4>7の世界
ユーザー kuramukuramu
提出日時 2016-01-29 12:13:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 76,264 KB
実行使用メモリ 37,104 KB
最終ジャッジ日時 2024-12-30 11:54:34
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,936 KB
testcase_01 AC 58 ms
36,884 KB
testcase_02 AC 58 ms
36,920 KB
testcase_03 AC 57 ms
36,452 KB
testcase_04 AC 55 ms
36,776 KB
testcase_05 AC 55 ms
36,884 KB
testcase_06 AC 54 ms
36,936 KB
testcase_07 AC 55 ms
36,988 KB
testcase_08 AC 56 ms
37,104 KB
testcase_09 AC 55 ms
36,936 KB
testcase_10 AC 54 ms
36,716 KB
testcase_11 AC 56 ms
36,776 KB
testcase_12 AC 54 ms
36,528 KB
testcase_13 AC 54 ms
36,676 KB
testcase_14 AC 54 ms
36,576 KB
testcase_15 AC 57 ms
36,840 KB
testcase_16 AC 55 ms
36,936 KB
testcase_17 AC 58 ms
36,560 KB
testcase_18 AC 55 ms
36,956 KB
testcase_19 AC 55 ms
36,940 KB
testcase_20 AC 56 ms
36,756 KB
testcase_21 AC 58 ms
36,676 KB
testcase_22 AC 56 ms
36,552 KB
testcase_23 AC 56 ms
36,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String[] temp = stdReader.readLine().split(" ");
	    	  if(temp[0].length() > temp[1].length()){
	    		  System.out.println(temp[0]);
	    	  }else if(temp[0].length() < temp[1].length()){
	    		  System.out.println(temp[1]);
	    	  }else{
	    		  for(int i=0;i<temp[0].length();i++){
	    			  if(temp[0].charAt(i) != temp[1].charAt(i)){
	    				  if(temp[0].charAt(i)=='4'&& temp[1].charAt(i)=='7'){
	    		    		  System.out.println(temp[0]);
	    				  }else if(temp[0].charAt(i)=='7' && temp[1].charAt(i)=='4'){
	    					  System.out.println(temp[1]);
	    				  }else if(temp[0].charAt(i) > temp[1].charAt(i)){
	    		    		  System.out.println(temp[0]);
	    				  }else{
	    					  System.out.println(temp[1]);
	    				  }
	    				  break;
	    			  }
	    		  }
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0