結果

問題 No.281 門松と魔法(1)
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-13 13:50:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 802 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-04-24 12:41:11
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 12 ms
6,016 KB
testcase_03 AC 10 ms
6,016 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,144 KB
testcase_07 AC 10 ms
6,016 KB
testcase_08 AC 10 ms
6,144 KB
testcase_09 AC 9 ms
6,144 KB
testcase_10 AC 10 ms
6,016 KB
testcase_11 AC 10 ms
6,144 KB
testcase_12 AC 9 ms
6,016 KB
testcase_13 AC 11 ms
6,016 KB
testcase_14 AC 10 ms
5,888 KB
testcase_15 AC 10 ms
6,144 KB
testcase_16 AC 9 ms
6,016 KB
testcase_17 AC 10 ms
5,888 KB
testcase_18 AC 9 ms
6,144 KB
testcase_19 AC 10 ms
6,016 KB
testcase_20 AC 10 ms
6,144 KB
testcase_21 AC 10 ms
6,016 KB
testcase_22 AC 10 ms
6,144 KB
testcase_23 AC 11 ms
6,016 KB
testcase_24 AC 10 ms
6,144 KB
testcase_25 AC 11 ms
6,144 KB
testcase_26 AC 10 ms
6,144 KB
testcase_27 AC 11 ms
6,144 KB
testcase_28 AC 11 ms
6,144 KB
testcase_29 AC 11 ms
6,144 KB
testcase_30 AC 10 ms
6,144 KB
testcase_31 AC 10 ms
6,016 KB
testcase_32 AC 10 ms
6,144 KB
testcase_33 AC 9 ms
6,144 KB
testcase_34 AC 9 ms
6,016 KB
testcase_35 AC 10 ms
6,016 KB
testcase_36 AC 10 ms
6,016 KB
testcase_37 AC 10 ms
6,016 KB
testcase_38 AC 9 ms
6,016 KB
testcase_39 AC 10 ms
6,016 KB
testcase_40 AC 9 ms
6,144 KB
testcase_41 AC 10 ms
6,144 KB
testcase_42 AC 10 ms
6,144 KB
testcase_43 AC 10 ms
5,888 KB
testcase_44 AC 10 ms
6,144 KB
testcase_45 AC 10 ms
6,144 KB
testcase_46 AC 10 ms
6,144 KB
testcase_47 AC 10 ms
6,144 KB
testcase_48 AC 10 ms
6,016 KB
testcase_49 AC 10 ms
6,144 KB
testcase_50 AC 10 ms
6,144 KB
testcase_51 AC 9 ms
6,144 KB
testcase_52 AC 10 ms
6,144 KB
testcase_53 AC 10 ms
6,016 KB
testcase_54 AC 10 ms
6,016 KB
testcase_55 AC 9 ms
6,144 KB
testcase_56 AC 10 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d=int(raw_input())
H1=int(raw_input())
H2=int(raw_input())
H3=int(raw_input())
def kadomatsu(h1,h2,h3):
    if h1<h2 and h2>h3 and h1!=h3:
        return True
    if h1>h2 and h2<h3 and h1!=h3:
        return True
    return False

if kadomatsu(H1,H2,H3):
    print 0
    exit()
if d==0:
    print -1
    exit()
if H3<H1:
   H3,H1=H1,H3 

ans=3000000000
# case H1<H2>H3
t1,t2=max(0,(H1-H2+d)/d),max(0,(H3-H2+d)/d)
h1,h3=max(0,H1-t1*d),max(0,H3-t2*d)
if kadomatsu(h1,H2,h3):
    #print t1,"+",t2
    ans=min(ans,t1+t2)
elif h3>0 and max(h3-d,0)!=h1:
    #print t1,"+",t2,"+1"
    ans=min(ans,t1+t2+1)

# case H1>H2<H3
t0=0
if H1==H3:
    H1=max(0,H1-d)
    t0=1
t1=(H2-H1+d)/d
h2=max(0,H2-t1*d)
if kadomatsu(H1,h2,H3):
    #print H1,h2,H3
    ans=min(ans,t0+t1)
if ans==3000000000:
    ans=-1
print ans
0