結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-10-14 22:09:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 60,992 KB
最終ジャッジ日時 2024-06-26 14:48:02
合計ジャッジ時間 6,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,764 KB
testcase_01 AC 41 ms
58,804 KB
testcase_02 AC 54 ms
60,032 KB
testcase_03 WA -
testcase_04 AC 129 ms
59,864 KB
testcase_05 AC 35 ms
52,812 KB
testcase_06 AC 35 ms
52,948 KB
testcase_07 WA -
testcase_08 AC 36 ms
52,908 KB
testcase_09 AC 35 ms
52,228 KB
testcase_10 AC 36 ms
52,260 KB
testcase_11 AC 36 ms
52,564 KB
testcase_12 AC 36 ms
52,428 KB
testcase_13 WA -
testcase_14 AC 132 ms
60,000 KB
testcase_15 AC 35 ms
51,620 KB
testcase_16 AC 35 ms
52,548 KB
testcase_17 WA -
testcase_18 AC 47 ms
59,920 KB
testcase_19 AC 47 ms
58,896 KB
testcase_20 AC 57 ms
59,108 KB
testcase_21 AC 42 ms
59,504 KB
testcase_22 AC 35 ms
52,864 KB
testcase_23 AC 36 ms
51,828 KB
testcase_24 AC 46 ms
60,188 KB
testcase_25 AC 47 ms
59,288 KB
testcase_26 AC 43 ms
59,624 KB
testcase_27 AC 36 ms
51,868 KB
testcase_28 WA -
testcase_29 AC 128 ms
58,344 KB
testcase_30 AC 35 ms
52,448 KB
testcase_31 AC 35 ms
52,448 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 131 ms
59,116 KB
testcase_35 AC 36 ms
52,692 KB
testcase_36 AC 36 ms
53,492 KB
testcase_37 WA -
testcase_38 AC 43 ms
59,928 KB
testcase_39 AC 43 ms
59,196 KB
testcase_40 AC 43 ms
59,240 KB
testcase_41 WA -
testcase_42 AC 43 ms
59,756 KB
testcase_43 AC 36 ms
52,512 KB
testcase_44 AC 44 ms
59,000 KB
testcase_45 AC 43 ms
59,496 KB
testcase_46 AC 36 ms
53,216 KB
testcase_47 AC 42 ms
59,524 KB
testcase_48 WA -
testcase_49 AC 130 ms
60,168 KB
testcase_50 AC 35 ms
52,216 KB
testcase_51 AC 34 ms
52,944 KB
testcase_52 WA -
testcase_53 AC 133 ms
59,916 KB
testcase_54 AC 94 ms
58,920 KB
testcase_55 AC 51 ms
60,220 KB
testcase_56 AC 35 ms
52,708 KB
testcase_57 AC 34 ms
53,060 KB
testcase_58 AC 35 ms
52,072 KB
testcase_59 AC 35 ms
52,728 KB
testcase_60 AC 35 ms
51,680 KB
testcase_61 AC 37 ms
52,780 KB
testcase_62 AC 37 ms
52,776 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
x,a = map(int,input().split())
y,b = map(int,input().split())
ans = 10 ** 15
if t >= 0:
    cnt = 0
    while cnt * a <= 2*10**7:
        if cnt * a <= t:
            ans = min(ans,x*cnt + t-x * cnt)
        else:
#             print(a*cnt,-((-(a*cnt-t))//b))
            ans = min(ans,x*cnt + (-((-(a*cnt-t))//b)) * y +  t - (a*cnt - (-((-(a*cnt-t))//b)) * b))
        cnt += 1
else:
    cnt = 0 
    b *= -1
    while cnt * b >=  - 2*10**7:
        if cnt * b <= t:
            ans = min(ans,y * cnt +  ((t - b*cnt)//a) * x + t - (cnt * b  + ((t - b*cnt)//a) * a))
        cnt += 1
print(ans)
0