結果

問題 No.293 4>7の世界
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-01-25 17:45:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 4,194 ms
コンパイル使用メモリ 80,228 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-12-30 11:50:19
合計ジャッジ時間 8,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,120 KB
testcase_01 AC 140 ms
40,848 KB
testcase_02 AC 130 ms
41,048 KB
testcase_03 AC 139 ms
41,116 KB
testcase_04 AC 139 ms
40,988 KB
testcase_05 AC 142 ms
41,180 KB
testcase_06 AC 121 ms
40,068 KB
testcase_07 AC 140 ms
40,952 KB
testcase_08 AC 141 ms
41,348 KB
testcase_09 AC 135 ms
40,976 KB
testcase_10 AC 144 ms
41,072 KB
testcase_11 AC 139 ms
41,052 KB
testcase_12 AC 143 ms
41,180 KB
testcase_13 AC 138 ms
41,196 KB
testcase_14 AC 136 ms
41,096 KB
testcase_15 AC 138 ms
40,972 KB
testcase_16 AC 141 ms
41,324 KB
testcase_17 AC 144 ms
41,120 KB
testcase_18 AC 131 ms
40,192 KB
testcase_19 AC 145 ms
41,232 KB
testcase_20 AC 136 ms
40,664 KB
testcase_21 AC 137 ms
41,056 KB
testcase_22 AC 141 ms
40,916 KB
testcase_23 AC 135 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0292 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		String a = in.next();
		String b = in.next();
		int n = a.length();
		int m = b.length();

		if (n != m) {
			out.println(n > m ? a : b);
			return;
		}

		for (int i=0; i<n; i++) {
			if (a.charAt(i) != b.charAt(i)) {
				if ((a.charAt(i) == '4' || a.charAt(i) == '7') && (b.charAt(i) == '4' || b.charAt(i) == '7'))
					out.println(a.charAt(i) == '4' ? a : b);
				else
					out.println(a.charAt(i) > b.charAt(i) ? a : b);
				return;
			}
		}
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0