結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー ygd.ygd.
提出日時 2022-10-14 21:50:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-26 13:44:17
合計ジャッジ時間 21,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
59,136 KB
testcase_01 AC 232 ms
59,264 KB
testcase_02 AC 231 ms
59,136 KB
testcase_03 AC 236 ms
59,520 KB
testcase_04 AC 74 ms
58,624 KB
testcase_05 AC 235 ms
59,392 KB
testcase_06 AC 235 ms
59,392 KB
testcase_07 AC 238 ms
59,392 KB
testcase_08 AC 233 ms
59,392 KB
testcase_09 AC 234 ms
59,904 KB
testcase_10 AC 235 ms
59,136 KB
testcase_11 AC 237 ms
59,264 KB
testcase_12 AC 235 ms
59,392 KB
testcase_13 AC 236 ms
59,136 KB
testcase_14 AC 74 ms
58,624 KB
testcase_15 AC 238 ms
59,520 KB
testcase_16 AC 238 ms
59,392 KB
testcase_17 AC 239 ms
59,520 KB
testcase_18 AC 372 ms
75,520 KB
testcase_19 AC 376 ms
75,008 KB
testcase_20 AC 378 ms
75,904 KB
testcase_21 AC 379 ms
75,264 KB
testcase_22 AC 237 ms
59,520 KB
testcase_23 AC 236 ms
59,136 KB
testcase_24 AC 369 ms
75,776 KB
testcase_25 AC 382 ms
75,392 KB
testcase_26 AC 380 ms
75,264 KB
testcase_27 AC 235 ms
59,520 KB
testcase_28 AC 237 ms
59,648 KB
testcase_29 AC 74 ms
58,624 KB
testcase_30 AC 236 ms
59,776 KB
testcase_31 AC 235 ms
59,392 KB
testcase_32 AC 236 ms
59,392 KB
testcase_33 AC 235 ms
59,392 KB
testcase_34 AC 75 ms
59,264 KB
testcase_35 AC 238 ms
59,776 KB
testcase_36 AC 237 ms
59,136 KB
testcase_37 AC 236 ms
59,520 KB
testcase_38 AC 382 ms
75,392 KB
testcase_39 AC 377 ms
75,648 KB
testcase_40 AC 382 ms
75,008 KB
testcase_41 AC 236 ms
59,136 KB
testcase_42 AC 377 ms
75,264 KB
testcase_43 AC 234 ms
59,648 KB
testcase_44 AC 382 ms
75,392 KB
testcase_45 AC 381 ms
75,392 KB
testcase_46 AC 234 ms
59,136 KB
testcase_47 AC 383 ms
75,136 KB
testcase_48 AC 237 ms
59,392 KB
testcase_49 AC 75 ms
58,752 KB
testcase_50 AC 236 ms
59,520 KB
testcase_51 AC 236 ms
59,520 KB
testcase_52 AC 237 ms
59,392 KB
testcase_53 AC 73 ms
58,496 KB
testcase_54 AC 235 ms
75,264 KB
testcase_55 AC 371 ms
75,136 KB
testcase_56 AC 236 ms
59,776 KB
testcase_57 AC 235 ms
59,264 KB
testcase_58 AC 235 ms
59,136 KB
testcase_59 AC 237 ms
59,520 KB
testcase_60 AC 234 ms
59,264 KB
testcase_61 AC 238 ms
59,136 KB
testcase_62 AC 233 ms
59,392 KB
testcase_63 AC 231 ms
59,264 KB
testcase_64 AC 233 ms
59,136 KB
testcase_65 AC 354 ms
75,520 KB
testcase_66 AC 233 ms
59,392 KB
testcase_67 AC 364 ms
75,264 KB
testcase_68 AC 236 ms
59,648 KB
testcase_69 AC 234 ms
59,136 KB
testcase_70 AC 234 ms
59,264 KB
testcase_71 AC 387 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import math
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict 
#from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    T = int(input())
    X,A = map(int,input().split())
    Y,B = map(int,input().split())
    MAX = pow(10,7) + 5

    ans = 1 << 60
    # 戻る回数
    for i in range(MAX):
        nokori = T + B*i
        if nokori < 0:
            continue
        temp = Y*i
        j = nokori//A
        temp += j*X + (nokori - j*A)
        # print(i,temp)
        ans = min(ans, temp)
    print(ans)

if __name__ == '__main__':
    main()
0