結果

問題 No.1010 折って重ねて
ユーザー MottchanMottchan
提出日時 2023-03-26 20:25:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 76,712 KB
最終ジャッジ日時 2024-09-19 09:58:30
合計ジャッジ時間 7,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,100 KB
testcase_01 AC 109 ms
76,544 KB
testcase_02 AC 107 ms
76,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 114 ms
76,152 KB
testcase_06 AC 130 ms
76,188 KB
testcase_07 AC 137 ms
76,544 KB
testcase_08 AC 110 ms
76,712 KB
testcase_09 AC 117 ms
76,340 KB
testcase_10 AC 112 ms
76,108 KB
testcase_11 AC 122 ms
76,096 KB
testcase_12 AC 129 ms
76,032 KB
testcase_13 AC 118 ms
76,160 KB
testcase_14 AC 114 ms
76,104 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 110 ms
76,204 KB
testcase_36 AC 100 ms
76,032 KB
testcase_37 AC 150 ms
76,032 KB
testcase_38 WA -
testcase_39 AC 131 ms
76,032 KB
testcase_40 WA -
testcase_41 AC 92 ms
76,288 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
x,y,h = map(int, input().split())

dp = 0
for pro in product((0, 1), repeat=18):#0:横を折る、1:縦を折る
    a = x*1000
    b = y*1000
    c = h
    ans = 0
    for i in range(18):
        if pro[i]:
            if a >= c:
                a /=2
                c *=2
                ans+=1
            else:
                break
        else:
            if b >= c:
                b /=2
                c *=2
                ans+=1
            else:
                break
    dp = max(dp, ans)
print(dp)
0