結果

問題 No.293 4>7の世界
ユーザー htensaihtensai
提出日時 2019-11-22 19:39:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-10-11 02:39:21
合計ジャッジ時間 5,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,936 KB
testcase_01 AC 119 ms
54,136 KB
testcase_02 AC 107 ms
52,908 KB
testcase_03 AC 117 ms
53,788 KB
testcase_04 AC 126 ms
54,296 KB
testcase_05 AC 120 ms
54,136 KB
testcase_06 AC 122 ms
53,856 KB
testcase_07 WA -
testcase_08 AC 118 ms
53,940 KB
testcase_09 AC 106 ms
52,568 KB
testcase_10 AC 117 ms
53,924 KB
testcase_11 AC 120 ms
54,016 KB
testcase_12 AC 120 ms
54,056 KB
testcase_13 AC 109 ms
52,940 KB
testcase_14 AC 120 ms
54,184 KB
testcase_15 AC 121 ms
54,108 KB
testcase_16 AC 120 ms
54,012 KB
testcase_17 AC 116 ms
53,760 KB
testcase_18 AC 118 ms
54,096 KB
testcase_19 AC 121 ms
54,160 KB
testcase_20 AC 123 ms
54,224 KB
testcase_21 AC 121 ms
53,772 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		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++) {
		        char ca = a.charAt(i);
		        char cb = b.charAt(i);
		        if ((ca == '4' && cb == '7') || ca > cb) {
		            System.out.println(a);
		            return;
		        } else if ((ca == '7' && cb == '4') || ca < cb) {
		            System.out.println(b);
		            return;
		        }
		    }
		}
	}
}
0