結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー ntudantuda
提出日時 2023-12-19 20:29:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-09-27 08:59:35
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,280 KB
testcase_01 AC 38 ms
52,484 KB
testcase_02 AC 40 ms
52,340 KB
testcase_03 AC 37 ms
53,620 KB
testcase_04 AC 38 ms
52,204 KB
testcase_05 AC 36 ms
52,072 KB
testcase_06 AC 37 ms
52,964 KB
testcase_07 AC 36 ms
52,184 KB
testcase_08 AC 38 ms
51,944 KB
testcase_09 AC 36 ms
52,968 KB
testcase_10 AC 37 ms
52,644 KB
testcase_11 AC 36 ms
52,124 KB
testcase_12 AC 37 ms
53,020 KB
testcase_13 AC 37 ms
52,892 KB
testcase_14 AC 35 ms
53,064 KB
testcase_15 AC 36 ms
52,676 KB
testcase_16 AC 36 ms
52,332 KB
testcase_17 AC 36 ms
52,004 KB
testcase_18 AC 36 ms
52,888 KB
testcase_19 AC 36 ms
53,004 KB
testcase_20 AC 36 ms
51,996 KB
testcase_21 AC 36 ms
53,256 KB
testcase_22 AC 36 ms
51,940 KB
testcase_23 AC 36 ms
52,124 KB
testcase_24 AC 37 ms
53,788 KB
testcase_25 AC 36 ms
52,480 KB
testcase_26 AC 38 ms
54,028 KB
testcase_27 AC 39 ms
52,216 KB
testcase_28 AC 38 ms
52,836 KB
testcase_29 AC 37 ms
53,144 KB
testcase_30 AC 39 ms
52,944 KB
testcase_31 AC 36 ms
52,200 KB
testcase_32 AC 36 ms
52,816 KB
testcase_33 AC 36 ms
52,944 KB
testcase_34 AC 36 ms
51,936 KB
testcase_35 AC 37 ms
51,880 KB
testcase_36 AC 37 ms
52,212 KB
testcase_37 AC 37 ms
52,400 KB
testcase_38 AC 36 ms
52,888 KB
testcase_39 AC 37 ms
52,064 KB
testcase_40 AC 36 ms
52,760 KB
testcase_41 AC 36 ms
52,148 KB
testcase_42 AC 38 ms
51,820 KB
testcase_43 AC 36 ms
52,220 KB
testcase_44 AC 37 ms
53,492 KB
testcase_45 AC 37 ms
52,156 KB
testcase_46 AC 37 ms
52,624 KB
testcase_47 AC 36 ms
52,616 KB
testcase_48 AC 36 ms
52,960 KB
testcase_49 AC 35 ms
52,556 KB
testcase_50 AC 35 ms
52,960 KB
testcase_51 AC 37 ms
53,040 KB
testcase_52 AC 35 ms
53,024 KB
testcase_53 AC 36 ms
52,276 KB
testcase_54 AC 36 ms
53,528 KB
testcase_55 AC 37 ms
53,216 KB
testcase_56 AC 37 ms
53,496 KB
testcase_57 AC 37 ms
53,288 KB
testcase_58 AC 40 ms
52,116 KB
testcase_59 AC 39 ms
51,964 KB
testcase_60 AC 37 ms
53,096 KB
testcase_61 AC 38 ms
52,568 KB
testcase_62 AC 37 ms
51,940 KB
testcase_63 AC 36 ms
52,192 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 37 ms
53,068 KB
testcase_69 AC 37 ms
52,212 KB
testcase_70 AC 37 ms
52,640 KB
testcase_71 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
X, A = map(int, input().split())
Y, B = map(int, input().split())
ans = 10 ** 15 + 1
tmp = 10 ** 15
y = max(-(T//B),0)
i = 0
ans = tmp
x = (T + B * y) // A
d = T - A * x + B * y
tmp = X * x + Y * y + d
ans = min(ans,tmp)
#print(x, y, d, ans, tmp)
while i < 10:
    if X > Y:
        x += 1
        y = - ((T - A * x) // B)
        d = T - A * x + B * y
    else:
        y += 1
        x = (T + B * y) // A
        d = T - A * x + B * y
    tmp = X * x + Y * y + d
    ans = min(ans, tmp)
    #print(x, y, d, ans, tmp)
    i += 1
print(ans)
0