結果

問題 No.1010 折って重ねて
ユーザー ntk3264ntk3264
提出日時 2020-04-03 02:29:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-06-28 17:37:42
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,308 KB
testcase_01 AC 103 ms
40,032 KB
testcase_02 AC 117 ms
41,300 KB
testcase_03 AC 104 ms
41,164 KB
testcase_04 AC 107 ms
41,440 KB
testcase_05 AC 118 ms
41,768 KB
testcase_06 AC 116 ms
40,760 KB
testcase_07 AC 115 ms
40,636 KB
testcase_08 AC 117 ms
41,412 KB
testcase_09 AC 111 ms
40,260 KB
testcase_10 AC 109 ms
41,512 KB
testcase_11 AC 112 ms
40,124 KB
testcase_12 AC 119 ms
41,252 KB
testcase_13 AC 120 ms
41,172 KB
testcase_14 AC 109 ms
41,596 KB
testcase_15 AC 116 ms
41,392 KB
testcase_16 AC 106 ms
41,528 KB
testcase_17 AC 105 ms
41,172 KB
testcase_18 AC 104 ms
41,396 KB
testcase_19 AC 110 ms
41,096 KB
testcase_20 AC 118 ms
41,284 KB
testcase_21 AC 108 ms
41,148 KB
testcase_22 AC 106 ms
41,504 KB
testcase_23 AC 114 ms
41,424 KB
testcase_24 AC 102 ms
41,496 KB
testcase_25 AC 116 ms
41,440 KB
testcase_26 AC 121 ms
41,276 KB
testcase_27 AC 123 ms
41,336 KB
testcase_28 AC 122 ms
41,176 KB
testcase_29 AC 119 ms
41,580 KB
testcase_30 AC 121 ms
41,432 KB
testcase_31 AC 112 ms
41,352 KB
testcase_32 AC 106 ms
41,360 KB
testcase_33 AC 114 ms
41,248 KB
testcase_34 AC 116 ms
41,440 KB
testcase_35 AC 120 ms
41,288 KB
testcase_36 AC 119 ms
41,668 KB
testcase_37 AC 114 ms
40,124 KB
testcase_38 WA -
testcase_39 AC 119 ms
41,684 KB
testcase_40 WA -
testcase_41 AC 108 ms
41,200 KB
testcase_42 AC 114 ms
39,988 KB
testcase_43 AC 104 ms
41,260 KB
testcase_44 AC 113 ms
41,276 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;

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

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

    }

}
0