結果

問題 No.293 4>7の世界
ユーザー ぴろずぴろず
提出日時 2015-10-23 22:29:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-06-09 16:37:58
合計ジャッジ時間 5,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,168 KB
testcase_01 AC 111 ms
54,300 KB
testcase_02 AC 110 ms
54,236 KB
testcase_03 AC 112 ms
54,052 KB
testcase_04 AC 106 ms
53,576 KB
testcase_05 AC 110 ms
53,880 KB
testcase_06 AC 104 ms
52,780 KB
testcase_07 AC 110 ms
53,848 KB
testcase_08 AC 98 ms
52,940 KB
testcase_09 AC 113 ms
54,072 KB
testcase_10 AC 110 ms
54,296 KB
testcase_11 AC 113 ms
54,036 KB
testcase_12 AC 111 ms
53,884 KB
testcase_13 AC 100 ms
53,028 KB
testcase_14 AC 114 ms
54,000 KB
testcase_15 AC 98 ms
53,052 KB
testcase_16 AC 110 ms
54,156 KB
testcase_17 AC 110 ms
54,276 KB
testcase_18 AC 112 ms
54,364 KB
testcase_19 AC 114 ms
54,364 KB
testcase_20 AC 106 ms
54,024 KB
testcase_21 AC 107 ms
54,116 KB
testcase_22 AC 99 ms
52,756 KB
testcase_23 AC 121 ms
53,864 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