結果

問題 No.1010 折って重ねて
ユーザー syunsukesyunsuke
提出日時 2020-09-16 20:05:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 59,040 KB
最終ジャッジ日時 2024-06-22 03:30:38
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,700 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 38 ms
53,288 KB
testcase_03 AC 42 ms
57,676 KB
testcase_04 AC 41 ms
58,712 KB
testcase_05 AC 40 ms
53,032 KB
testcase_06 AC 37 ms
52,684 KB
testcase_07 AC 38 ms
52,588 KB
testcase_08 AC 38 ms
53,340 KB
testcase_09 AC 37 ms
53,288 KB
testcase_10 AC 38 ms
53,376 KB
testcase_11 AC 38 ms
53,812 KB
testcase_12 AC 38 ms
53,660 KB
testcase_13 AC 37 ms
53,008 KB
testcase_14 AC 37 ms
53,244 KB
testcase_15 AC 40 ms
58,008 KB
testcase_16 AC 41 ms
59,040 KB
testcase_17 AC 41 ms
57,436 KB
testcase_18 AC 41 ms
58,980 KB
testcase_19 AC 41 ms
58,792 KB
testcase_20 AC 40 ms
57,196 KB
testcase_21 AC 41 ms
57,972 KB
testcase_22 AC 40 ms
57,496 KB
testcase_23 AC 40 ms
57,480 KB
testcase_24 AC 41 ms
57,612 KB
testcase_25 AC 40 ms
57,396 KB
testcase_26 AC 41 ms
58,464 KB
testcase_27 AC 40 ms
58,120 KB
testcase_28 AC 40 ms
58,544 KB
testcase_29 AC 40 ms
57,696 KB
testcase_30 AC 36 ms
53,192 KB
testcase_31 AC 37 ms
52,804 KB
testcase_32 AC 37 ms
52,872 KB
testcase_33 AC 40 ms
57,984 KB
testcase_34 AC 37 ms
52,436 KB
testcase_35 AC 37 ms
53,372 KB
testcase_36 AC 36 ms
53,892 KB
testcase_37 AC 37 ms
52,328 KB
testcase_38 AC 38 ms
57,812 KB
testcase_39 AC 37 ms
52,464 KB
testcase_40 AC 39 ms
57,780 KB
testcase_41 AC 38 ms
52,216 KB
testcase_42 AC 39 ms
52,612 KB
testcase_43 AC 41 ms
58,220 KB
testcase_44 AC 40 ms
58,832 KB
testcase_45 AC 38 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,h=map(int,input().split())
X=x*1000
Y=y*1000
DP=[{} for i in range(200)]
DP[0][(X,Y,h*1.0)]=1
#print(DP)
for i in range(1,len(DP)):
    for K,v in DP[i-1].items():
        a,b,c=K
        if a>c+0.000001:
            #print(i,a,b,c)
            DP[i][(a/2,b,c*2)]=1
        if b>c+0.000001:
            #print(i,a,b,c)
            DP[i][(a,b/2,c*2)]=1
for i in range(len(DP)):
    if len(DP[i])==0:
        print(i-1)
        exit()
0