結果

問題 No.1010 折って重ねて
ユーザー Keisuke KubotaKeisuke Kubota
提出日時 2020-03-21 13:06:55
言語 Go
(1.23.4)
結果
TLE  
実行時間 -
コード長 418 bytes
コンパイル時間 12,750 ms
コンパイル使用メモリ 224,096 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-21 15:01:43
合計ジャッジ時間 23,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
6,912 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
6,912 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 TLE -
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 TLE -
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func main() {
	var x, y, h, i, buf float64
	fmt.Scan(&x)
	fmt.Scan(&y)
	fmt.Scan(&h)
	if x < y {
		buf, i = task(1000*x, h, i)
		_, i = task(1000*y, buf, i)
	} else {
		buf, i = task(1000*y, h, i)
		_, i = task(1000*x, buf, i)
	}
	fmt.Println(i)
}

func task(a, h, i float64) (float64, float64) {
	for {
		if a > h {
			a /= 2
			h *= 2
			i++
		}
		if a < h {
			return h, i
		}
	}
}
0