結果

問題 No.281 門松と魔法(1)
ユーザー rlangevinrlangevin
提出日時 2023-07-22 18:54:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 570 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 65,780 KB
最終ジャッジ日時 2023-10-24 01:25:45
合計ジャッジ時間 4,641 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 37 ms
53,376 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 37 ms
53,376 KB
testcase_04 AC 37 ms
53,376 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 AC 37 ms
53,376 KB
testcase_07 AC 37 ms
53,376 KB
testcase_08 AC 37 ms
53,376 KB
testcase_09 AC 37 ms
53,376 KB
testcase_10 AC 37 ms
53,376 KB
testcase_11 AC 37 ms
53,376 KB
testcase_12 AC 37 ms
53,376 KB
testcase_13 AC 37 ms
53,376 KB
testcase_14 AC 36 ms
53,376 KB
testcase_15 AC 37 ms
53,376 KB
testcase_16 AC 36 ms
53,376 KB
testcase_17 AC 36 ms
53,376 KB
testcase_18 AC 36 ms
53,376 KB
testcase_19 AC 36 ms
53,376 KB
testcase_20 AC 37 ms
53,376 KB
testcase_21 AC 37 ms
53,376 KB
testcase_22 AC 37 ms
53,376 KB
testcase_23 AC 37 ms
53,376 KB
testcase_24 AC 37 ms
53,376 KB
testcase_25 AC 37 ms
53,376 KB
testcase_26 AC 37 ms
53,376 KB
testcase_27 AC 37 ms
53,376 KB
testcase_28 AC 37 ms
53,376 KB
testcase_29 AC 37 ms
53,376 KB
testcase_30 AC 37 ms
53,376 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 35 ms
53,376 KB
testcase_34 AC 35 ms
53,376 KB
testcase_35 AC 37 ms
53,376 KB
testcase_36 AC 37 ms
53,376 KB
testcase_37 AC 36 ms
53,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 37 ms
53,376 KB
testcase_41 AC 37 ms
53,376 KB
testcase_42 AC 37 ms
53,376 KB
testcase_43 RE -
testcase_44 AC 37 ms
53,376 KB
testcase_45 AC 37 ms
53,376 KB
testcase_46 RE -
testcase_47 AC 37 ms
53,376 KB
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 37 ms
53,376 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 38 ms
53,376 KB
testcase_56 AC 37 ms
53,376 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