結果

問題 No.1010 折って重ねて
ユーザー ntk3264ntk3264
提出日時 2020-04-03 02:38:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 862 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-06-28 17:38:07
合計ジャッジ時間 8,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,056 KB
testcase_01 AC 106 ms
53,716 KB
testcase_02 AC 98 ms
52,748 KB
testcase_03 AC 101 ms
52,992 KB
testcase_04 AC 103 ms
52,756 KB
testcase_05 AC 102 ms
52,572 KB
testcase_06 AC 104 ms
52,716 KB
testcase_07 AC 97 ms
54,220 KB
testcase_08 AC 112 ms
53,696 KB
testcase_09 AC 105 ms
52,960 KB
testcase_10 AC 100 ms
53,128 KB
testcase_11 AC 98 ms
53,036 KB
testcase_12 AC 99 ms
53,184 KB
testcase_13 AC 111 ms
54,212 KB
testcase_14 AC 110 ms
53,836 KB
testcase_15 AC 109 ms
54,516 KB
testcase_16 AC 114 ms
54,084 KB
testcase_17 AC 117 ms
54,172 KB
testcase_18 AC 117 ms
54,152 KB
testcase_19 AC 99 ms
52,992 KB
testcase_20 AC 100 ms
53,128 KB
testcase_21 AC 114 ms
53,708 KB
testcase_22 AC 115 ms
54,124 KB
testcase_23 AC 107 ms
53,068 KB
testcase_24 AC 105 ms
52,948 KB
testcase_25 AC 106 ms
54,156 KB
testcase_26 AC 111 ms
54,228 KB
testcase_27 AC 116 ms
54,168 KB
testcase_28 AC 121 ms
54,272 KB
testcase_29 AC 117 ms
54,012 KB
testcase_30 AC 110 ms
53,676 KB
testcase_31 AC 104 ms
52,648 KB
testcase_32 AC 108 ms
53,016 KB
testcase_33 AC 116 ms
54,140 KB
testcase_34 AC 114 ms
54,156 KB
testcase_35 AC 107 ms
53,080 KB
testcase_36 AC 100 ms
53,000 KB
testcase_37 AC 113 ms
54,068 KB
testcase_38 WA -
testcase_39 AC 103 ms
53,020 KB
testcase_40 WA -
testcase_41 AC 115 ms
53,988 KB
testcase_42 AC 113 ms
53,832 KB
testcase_43 AC 111 ms
53,640 KB
testcase_44 AC 101 ms
52,960 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;

public class Main {

    Scanner sc = new Scanner(System.in);

    PrintWriter out = new PrintWriter(System.out);

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

    void run() {

        long x = sc.nextLong()*1000;
        long y = sc.nextLong()*1000;
        long h = sc.nextLong();

        int ans = 0;

        label:
        while (x>h || y>h) {
            if (y<x) {
                long tmp = y;
                y = x;
                x = tmp;
            }
            if (x>h) {
                x /= 2;
                h *= 2;
                ans++;
                continue label;
            }
            if (y>h) {
                y /= 2;
                h *= 2;
                ans++;
            }
        }

        out.print(ans);
        out.flush();

    }

}
0