結果

問題 No.293 4>7の世界
ユーザー tom_tom_tomtom_tom_tom
提出日時 2015-11-10 17:12:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 889 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 56,112 KB
最終ジャッジ日時 2024-09-13 14:21:16
合計ジャッジ時間 7,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,352 KB
testcase_01 AC 126 ms
41,148 KB
testcase_02 AC 128 ms
41,388 KB
testcase_03 WA -
testcase_04 AC 126 ms
41,264 KB
testcase_05 WA -
testcase_06 AC 127 ms
41,352 KB
testcase_07 AC 125 ms
41,328 KB
testcase_08 AC 125 ms
41,172 KB
testcase_09 WA -
testcase_10 AC 127 ms
41,376 KB
testcase_11 AC 126 ms
41,276 KB
testcase_12 AC 129 ms
41,320 KB
testcase_13 AC 129 ms
41,132 KB
testcase_14 AC 125 ms
41,440 KB
testcase_15 WA -
testcase_16 AC 127 ms
41,460 KB
testcase_17 AC 128 ms
41,132 KB
testcase_18 AC 127 ms
41,480 KB
testcase_19 AC 125 ms
41,352 KB
testcase_20 AC 115 ms
40,192 KB
testcase_21 AC 128 ms
41,232 KB
testcase_22 AC 129 ms
41,200 KB
testcase_23 AC 129 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.util.Scanner;

/**
 * No.293 4>7の世界
 * star 2
 * http://yukicoder.me/problems/728
 */
public class YukiCoder293 {

    public static void main(String[] args) {
        run();
    }

    public static void run() {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        String[] org = s.split(" ");
        String l = org[0];
        String r = org[1];
        s = s.replace('4', 'A');
        s = s.replace('7', '4');
        s = s.replace('A', '7');
        String[] ss = s.split(" ");
        long a = Long.parseLong(ss[0]);
        long b = Long.parseLong(ss[1]);
        boolean left = false;
        if (a > b) {
            left = true;
        }

        System.out.println(left ? l : r);
//        System.out.println(Math.max(a, b));
    }
/*
4 7
4

5 7
5

40 170
170

1237564890 1234567890
1234567890
 */

}
0