結果

問題 No.293 4>7の世界
ユーザー kuramukuramu
提出日時 2016-01-29 12:13:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 77,216 KB
実行使用メモリ 50,460 KB
最終ジャッジ日時 2024-06-09 17:00:48
合計ジャッジ時間 4,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,972 KB
testcase_01 AC 54 ms
50,092 KB
testcase_02 AC 54 ms
50,316 KB
testcase_03 AC 53 ms
50,280 KB
testcase_04 AC 53 ms
50,340 KB
testcase_05 AC 57 ms
50,376 KB
testcase_06 AC 55 ms
50,060 KB
testcase_07 AC 54 ms
50,420 KB
testcase_08 AC 53 ms
50,016 KB
testcase_09 AC 53 ms
50,460 KB
testcase_10 AC 53 ms
50,348 KB
testcase_11 AC 54 ms
50,304 KB
testcase_12 AC 55 ms
50,068 KB
testcase_13 AC 56 ms
50,276 KB
testcase_14 AC 54 ms
50,284 KB
testcase_15 AC 54 ms
49,928 KB
testcase_16 AC 55 ms
50,204 KB
testcase_17 AC 54 ms
50,328 KB
testcase_18 AC 53 ms
50,412 KB
testcase_19 AC 57 ms
50,400 KB
testcase_20 AC 56 ms
50,064 KB
testcase_21 AC 54 ms
50,300 KB
testcase_22 AC 55 ms
49,928 KB
testcase_23 AC 52 ms
50,356 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