結果

問題 No.293 4>7の世界
ユーザー ぴろずぴろず
提出日時 2015-10-23 22:29:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-12-30 11:02:01
合計ジャッジ時間 6,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,964 KB
testcase_01 AC 119 ms
40,168 KB
testcase_02 AC 135 ms
40,968 KB
testcase_03 AC 137 ms
40,988 KB
testcase_04 AC 142 ms
40,932 KB
testcase_05 AC 137 ms
41,132 KB
testcase_06 AC 136 ms
41,204 KB
testcase_07 AC 134 ms
41,232 KB
testcase_08 AC 135 ms
41,140 KB
testcase_09 AC 122 ms
40,216 KB
testcase_10 AC 131 ms
41,148 KB
testcase_11 AC 135 ms
41,236 KB
testcase_12 AC 132 ms
40,744 KB
testcase_13 AC 120 ms
40,280 KB
testcase_14 AC 136 ms
40,872 KB
testcase_15 AC 133 ms
41,068 KB
testcase_16 AC 136 ms
41,240 KB
testcase_17 AC 136 ms
41,500 KB
testcase_18 AC 141 ms
41,192 KB
testcase_19 AC 133 ms
41,048 KB
testcase_20 AC 139 ms
40,948 KB
testcase_21 AC 138 ms
41,204 KB
testcase_22 AC 137 ms
41,008 KB
testcase_23 AC 134 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no293;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();
		System.out.println(less(a,b) ? a : b);
	}

	public static boolean less(String aa,String bb) {
		char[] a = aa.toCharArray();
		char[] b = bb.toCharArray();
		if (a.length != b.length) {
			return a.length > b.length;
		}
		int n = a.length;
		for(int i=0;i<n;i++) {
			if (a[i] != b[i]) {
				if (a[i] == '4' && b[i] == '7' || a[i] == '7' && b[i] == '4') {
					return a[i] < b[i];
				}else{
					return a[i] > b[i];
				}
			}
		}
		return true;
	}

}
0