結果

問題 No.1010 折って重ねて
ユーザー Mishan5055Mishan5055
提出日時 2020-03-27 16:46:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-06-10 16:18:28
合計ジャッジ時間 9,112 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,372 KB
testcase_01 AC 117 ms
41,076 KB
testcase_02 AC 96 ms
39,920 KB
testcase_03 WA -
testcase_04 AC 114 ms
41,104 KB
testcase_05 AC 95 ms
39,912 KB
testcase_06 AC 105 ms
41,040 KB
testcase_07 AC 94 ms
39,780 KB
testcase_08 AC 92 ms
39,484 KB
testcase_09 AC 94 ms
39,556 KB
testcase_10 AC 100 ms
40,204 KB
testcase_11 AC 97 ms
40,140 KB
testcase_12 AC 93 ms
39,588 KB
testcase_13 AC 106 ms
41,076 KB
testcase_14 AC 95 ms
39,844 KB
testcase_15 AC 105 ms
41,052 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 102 ms
40,044 KB
testcase_20 WA -
testcase_21 AC 112 ms
41,304 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 101 ms
39,852 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 95 ms
40,048 KB
testcase_31 AC 95 ms
40,100 KB
testcase_32 AC 106 ms
40,952 KB
testcase_33 AC 110 ms
41,400 KB
testcase_34 AC 109 ms
41,336 KB
testcase_35 AC 110 ms
41,180 KB
testcase_36 AC 105 ms
40,576 KB
testcase_37 AC 97 ms
40,196 KB
testcase_38 WA -
testcase_39 AC 105 ms
40,940 KB
testcase_40 WA -
testcase_41 AC 98 ms
40,084 KB
testcase_42 AC 115 ms
41,012 KB
testcase_43 AC 116 ms
41,096 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc=new Scanner(System.in);
        long X=sc.nextLong();
        long Y=sc.nextLong();
        int H=sc.nextInt();
        
        X*=1000;
        Y*=1000;
        
        if(X<Y){// X,Y must be X>Y
            long 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