結果

問題 No.1010 折って重ねて
ユーザー Mishan5055Mishan5055
提出日時 2020-03-27 16:51:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-06-10 16:18:46
合計ジャッジ時間 8,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,780 KB
testcase_01 AC 110 ms
40,636 KB
testcase_02 AC 107 ms
40,948 KB
testcase_03 AC 125 ms
41,372 KB
testcase_04 AC 117 ms
41,532 KB
testcase_05 AC 122 ms
41,660 KB
testcase_06 AC 117 ms
40,792 KB
testcase_07 AC 124 ms
41,484 KB
testcase_08 AC 117 ms
40,624 KB
testcase_09 AC 122 ms
41,336 KB
testcase_10 AC 125 ms
41,548 KB
testcase_11 AC 120 ms
41,236 KB
testcase_12 AC 111 ms
40,876 KB
testcase_13 AC 121 ms
41,344 KB
testcase_14 AC 108 ms
40,756 KB
testcase_15 AC 109 ms
40,860 KB
testcase_16 AC 118 ms
41,016 KB
testcase_17 AC 117 ms
41,348 KB
testcase_18 AC 120 ms
41,524 KB
testcase_19 AC 109 ms
40,604 KB
testcase_20 AC 126 ms
41,560 KB
testcase_21 AC 116 ms
41,064 KB
testcase_22 AC 121 ms
41,512 KB
testcase_23 AC 113 ms
41,112 KB
testcase_24 AC 120 ms
40,936 KB
testcase_25 AC 115 ms
40,952 KB
testcase_26 AC 120 ms
41,640 KB
testcase_27 AC 107 ms
40,208 KB
testcase_28 AC 122 ms
40,740 KB
testcase_29 AC 119 ms
40,728 KB
testcase_30 AC 120 ms
41,588 KB
testcase_31 AC 118 ms
41,564 KB
testcase_32 AC 117 ms
41,424 KB
testcase_33 AC 115 ms
41,396 KB
testcase_34 AC 124 ms
41,560 KB
testcase_35 AC 115 ms
41,224 KB
testcase_36 AC 131 ms
41,656 KB
testcase_37 AC 117 ms
41,264 KB
testcase_38 AC 127 ms
41,064 KB
testcase_39 AC 103 ms
40,456 KB
testcase_40 AC 116 ms
40,604 KB
testcase_41 AC 124 ms
41,800 KB
testcase_42 AC 120 ms
41,176 KB
testcase_43 AC 127 ms
41,536 KB
testcase_44 AC 117 ms
40,684 KB
testcase_45 AC 115 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc=new Scanner(System.in);
        double X=sc.nextDouble();
        double Y=sc.nextDouble();
        double H=sc.nextDouble();
        
        X*=1000;
        Y*=1000;
        
        if(X<Y){// X,Y must be X>Y
            double tmp=X;
            X=Y;
            Y=tmp;
        }
        
        int ans=0;
        
        while(Y>H){
            ans++;
            Y/=2;
            H*=2;
        }
        
        while(X>H){
            ans++;
            X/=2;
            H*=2;
        }
        
        System.out.println(ans);
    }
}
0