結果

問題 No.1010 折って重ねて
ユーザー ntk3264ntk3264
提出日時 2020-04-03 02:59:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 42,124 KB
最終ジャッジ日時 2024-06-28 17:38:39
合計ジャッジ時間 8,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,124 KB
testcase_01 AC 123 ms
41,744 KB
testcase_02 AC 130 ms
42,100 KB
testcase_03 AC 112 ms
41,544 KB
testcase_04 AC 123 ms
41,856 KB
testcase_05 AC 110 ms
41,640 KB
testcase_06 AC 116 ms
41,912 KB
testcase_07 AC 110 ms
40,844 KB
testcase_08 AC 125 ms
41,128 KB
testcase_09 AC 137 ms
41,588 KB
testcase_10 AC 130 ms
41,628 KB
testcase_11 AC 114 ms
41,872 KB
testcase_12 AC 118 ms
41,524 KB
testcase_13 AC 124 ms
41,616 KB
testcase_14 AC 135 ms
41,736 KB
testcase_15 AC 134 ms
41,972 KB
testcase_16 AC 109 ms
41,916 KB
testcase_17 AC 125 ms
41,792 KB
testcase_18 AC 111 ms
41,768 KB
testcase_19 AC 122 ms
41,124 KB
testcase_20 AC 112 ms
41,672 KB
testcase_21 AC 117 ms
41,812 KB
testcase_22 AC 122 ms
41,656 KB
testcase_23 AC 125 ms
41,596 KB
testcase_24 AC 125 ms
41,836 KB
testcase_25 AC 114 ms
41,796 KB
testcase_26 AC 122 ms
41,576 KB
testcase_27 AC 122 ms
42,024 KB
testcase_28 AC 121 ms
42,124 KB
testcase_29 AC 120 ms
41,948 KB
testcase_30 AC 125 ms
42,044 KB
testcase_31 AC 121 ms
41,868 KB
testcase_32 AC 125 ms
41,808 KB
testcase_33 AC 112 ms
41,708 KB
testcase_34 AC 123 ms
41,824 KB
testcase_35 AC 116 ms
41,792 KB
testcase_36 AC 112 ms
41,696 KB
testcase_37 AC 130 ms
41,792 KB
testcase_38 AC 126 ms
41,720 KB
testcase_39 AC 126 ms
41,696 KB
testcase_40 AC 124 ms
41,704 KB
testcase_41 AC 130 ms
41,800 KB
testcase_42 AC 124 ms
41,692 KB
testcase_43 AC 126 ms
41,336 KB
testcase_44 AC 122 ms
41,756 KB
testcase_45 AC 123 ms
41,912 KB
権限があれば一括ダウンロードができます

ソースコード

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() {

        double x = sc.nextDouble()*1000;
        double y = sc.nextDouble()*1000;
        double h = sc.nextDouble();

        int ans = 0;

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

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

    }

}
0