結果

問題 No.281 門松と魔法(1)
ユーザー rlangevinrlangevin
提出日時 2023-07-22 18:54:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 570 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 66,324 KB
最終ジャッジ日時 2024-09-22 18:24:26
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,996 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 37 ms
52,744 KB
testcase_03 AC 37 ms
52,692 KB
testcase_04 AC 37 ms
53,816 KB
testcase_05 AC 39 ms
52,980 KB
testcase_06 AC 37 ms
53,540 KB
testcase_07 AC 38 ms
52,428 KB
testcase_08 AC 37 ms
52,196 KB
testcase_09 AC 37 ms
52,196 KB
testcase_10 AC 36 ms
53,148 KB
testcase_11 AC 38 ms
52,588 KB
testcase_12 AC 36 ms
53,696 KB
testcase_13 AC 36 ms
52,872 KB
testcase_14 AC 37 ms
52,556 KB
testcase_15 AC 36 ms
53,384 KB
testcase_16 AC 37 ms
54,144 KB
testcase_17 AC 36 ms
52,012 KB
testcase_18 AC 37 ms
53,424 KB
testcase_19 AC 37 ms
51,876 KB
testcase_20 AC 36 ms
52,736 KB
testcase_21 AC 37 ms
52,464 KB
testcase_22 AC 37 ms
52,132 KB
testcase_23 AC 37 ms
52,136 KB
testcase_24 AC 37 ms
52,956 KB
testcase_25 AC 37 ms
52,604 KB
testcase_26 AC 37 ms
52,324 KB
testcase_27 AC 37 ms
52,792 KB
testcase_28 AC 36 ms
53,048 KB
testcase_29 AC 36 ms
52,396 KB
testcase_30 AC 37 ms
52,576 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 36 ms
52,332 KB
testcase_34 AC 37 ms
52,832 KB
testcase_35 AC 39 ms
52,352 KB
testcase_36 AC 38 ms
52,596 KB
testcase_37 AC 38 ms
52,140 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 39 ms
52,200 KB
testcase_41 AC 37 ms
53,124 KB
testcase_42 AC 38 ms
52,864 KB
testcase_43 RE -
testcase_44 AC 37 ms
53,308 KB
testcase_45 AC 37 ms
53,764 KB
testcase_46 RE -
testcase_47 AC 39 ms
52,128 KB
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 37 ms
52,316 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 36 ms
52,740 KB
testcase_56 AC 37 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
inf = 10 ** 18
H = [0] * 3
for i in range(3):
    H[i] = int(input())
    
def check(A, d):
    cnt = 0
    if A[1] >= A[0]:
        cnt = (A[1] - A[0] + 1 + d - 1)//d
        A[1] -= cnt * d
    if A[1] <= 0:
        return inf
    
    if A[2] >= A[1]:
        cnt = (A[2] - A[1] + 1 + d - 1)//d
    
    return cnt
    
ans = inf
ans = min(ans, check([H[1], H[0], H[2]], d))
ans = min(ans, check([H[1], H[2], H[0]], d))
ans = min(ans, check([H[2], H[0], H[1]], d))
ans = min(ans, check([H[0], H[2], H[1]], d))

print(ans) if ans != inf else print(-1)
0