結果

問題 No.1010 折って重ねて
ユーザー ks2mks2m
提出日時 2020-03-20 21:29:19
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 5,925 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 50,364 KB
最終ジャッジ日時 2024-12-15 04:02:18
合計ジャッジ時間 5,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,092 KB
testcase_01 AC 49 ms
49,908 KB
testcase_02 AC 48 ms
49,992 KB
testcase_03 AC 49 ms
50,136 KB
testcase_04 AC 49 ms
49,808 KB
testcase_05 AC 49 ms
50,200 KB
testcase_06 AC 49 ms
50,256 KB
testcase_07 AC 48 ms
49,856 KB
testcase_08 AC 50 ms
50,096 KB
testcase_09 AC 50 ms
50,204 KB
testcase_10 AC 50 ms
50,012 KB
testcase_11 AC 50 ms
49,988 KB
testcase_12 AC 51 ms
49,748 KB
testcase_13 AC 49 ms
49,896 KB
testcase_14 AC 50 ms
50,260 KB
testcase_15 AC 51 ms
50,144 KB
testcase_16 AC 51 ms
50,364 KB
testcase_17 AC 50 ms
50,176 KB
testcase_18 AC 50 ms
49,896 KB
testcase_19 AC 50 ms
50,084 KB
testcase_20 AC 49 ms
49,844 KB
testcase_21 AC 49 ms
50,024 KB
testcase_22 AC 49 ms
50,240 KB
testcase_23 AC 50 ms
50,124 KB
testcase_24 AC 49 ms
50,252 KB
testcase_25 AC 48 ms
50,032 KB
testcase_26 AC 49 ms
50,100 KB
testcase_27 AC 51 ms
50,168 KB
testcase_28 AC 51 ms
50,164 KB
testcase_29 AC 50 ms
49,796 KB
testcase_30 AC 53 ms
50,228 KB
testcase_31 AC 50 ms
49,884 KB
testcase_32 AC 50 ms
49,764 KB
testcase_33 AC 49 ms
49,988 KB
testcase_34 AC 50 ms
50,316 KB
testcase_35 AC 51 ms
50,032 KB
testcase_36 AC 49 ms
49,924 KB
testcase_37 AC 49 ms
50,340 KB
testcase_38 WA -
testcase_39 AC 48 ms
50,232 KB
testcase_40 WA -
testcase_41 AC 48 ms
50,296 KB
testcase_42 AC 47 ms
50,280 KB
testcase_43 AC 48 ms
49,840 KB
testcase_44 AC 47 ms
50,048 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long x = Long.parseLong(sa[0]) * 1000;
		long y = Long.parseLong(sa[1]) * 1000;
		long h = Long.parseLong(sa[2]);
		br.close();

		long a = Math.min(x, y);
		long b = Math.max(x, y);
		long ans = 0;
		while (a > h) {
			a /= 2;
			h *= 2;
			ans++;
		}
		while (b > h) {
			b /= 2;
			h *= 2;
			ans++;
		}
		System.out.println(ans);
	}
}
0