結果

問題 No.1010 折って重ねて
ユーザー ks2mks2m
提出日時 2020-03-20 21:29:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 3,670 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-05-08 20:42:23
合計ジャッジ時間 6,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,280 KB
testcase_01 AC 52 ms
50,264 KB
testcase_02 AC 52 ms
50,340 KB
testcase_03 AC 52 ms
50,072 KB
testcase_04 AC 52 ms
50,324 KB
testcase_05 AC 51 ms
50,392 KB
testcase_06 AC 53 ms
50,292 KB
testcase_07 AC 54 ms
50,000 KB
testcase_08 AC 53 ms
50,220 KB
testcase_09 AC 53 ms
50,188 KB
testcase_10 AC 53 ms
50,028 KB
testcase_11 AC 52 ms
50,392 KB
testcase_12 AC 53 ms
50,056 KB
testcase_13 AC 52 ms
50,272 KB
testcase_14 AC 51 ms
50,304 KB
testcase_15 AC 51 ms
50,284 KB
testcase_16 AC 53 ms
50,304 KB
testcase_17 AC 53 ms
50,304 KB
testcase_18 AC 53 ms
50,400 KB
testcase_19 AC 53 ms
49,804 KB
testcase_20 AC 54 ms
49,992 KB
testcase_21 AC 53 ms
50,212 KB
testcase_22 AC 52 ms
50,012 KB
testcase_23 AC 53 ms
50,256 KB
testcase_24 AC 52 ms
50,420 KB
testcase_25 AC 54 ms
50,316 KB
testcase_26 AC 53 ms
50,300 KB
testcase_27 AC 52 ms
50,040 KB
testcase_28 AC 52 ms
50,328 KB
testcase_29 AC 52 ms
50,332 KB
testcase_30 AC 53 ms
50,120 KB
testcase_31 AC 54 ms
50,040 KB
testcase_32 AC 52 ms
49,920 KB
testcase_33 AC 53 ms
50,304 KB
testcase_34 AC 54 ms
50,332 KB
testcase_35 AC 53 ms
49,892 KB
testcase_36 AC 52 ms
50,256 KB
testcase_37 AC 53 ms
50,072 KB
testcase_38 WA -
testcase_39 AC 52 ms
50,376 KB
testcase_40 WA -
testcase_41 AC 53 ms
50,096 KB
testcase_42 AC 53 ms
49,980 KB
testcase_43 AC 52 ms
50,200 KB
testcase_44 AC 56 ms
50,080 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