結果

問題 No.1010 折って重ねて
ユーザー rlangevinrlangevin
提出日時 2023-01-12 20:09:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-06 02:31:04
合計ジャッジ時間 20,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
75,776 KB
testcase_01 AC 181 ms
75,264 KB
testcase_02 AC 170 ms
75,768 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 357 ms
75,648 KB
testcase_06 AC 332 ms
75,636 KB
testcase_07 AC 353 ms
75,648 KB
testcase_08 AC 288 ms
75,648 KB
testcase_09 AC 335 ms
75,792 KB
testcase_10 AC 361 ms
75,392 KB
testcase_11 AC 381 ms
75,520 KB
testcase_12 AC 317 ms
75,648 KB
testcase_13 AC 370 ms
75,648 KB
testcase_14 AC 361 ms
75,828 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 443 ms
75,520 KB
testcase_20 WA -
testcase_21 AC 447 ms
75,776 KB
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 AC 52 ms
59,264 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 422 ms
75,736 KB
testcase_35 AC 204 ms
75,904 KB
testcase_36 AC 197 ms
75,648 KB
testcase_37 AC 371 ms
75,776 KB
testcase_38 WA -
testcase_39 AC 337 ms
75,392 KB
testcase_40 WA -
testcase_41 AC 157 ms
75,520 KB
testcase_42 AC 421 ms
75,648 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 411 ms
75,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

px, py, ph = map(int, input().split())
px, py = 1000 * px, 1000 * py
ans = 0
for i in range(1 << 21):
    cnt = 0
    x, y, h = px, py, ph
    for j in range(21):
        if (i >> j) & 1:
            if x > h:
                cnt += 1
            else:
                break
            y *= 2
        else:
            if y > h:
                cnt += 1
            else:
                break
            x *= 2
        h *= 4
    ans = max(ans, cnt)
print(ans)            
0