結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー kyskys
提出日時 2022-10-14 21:31:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-06-26 13:15:25
合計ジャッジ時間 26,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
58,240 KB
testcase_01 AC 328 ms
57,728 KB
testcase_02 AC 327 ms
58,496 KB
testcase_03 AC 327 ms
58,240 KB
testcase_04 WA -
testcase_05 AC 330 ms
58,240 KB
testcase_06 AC 332 ms
57,600 KB
testcase_07 AC 326 ms
57,600 KB
testcase_08 AC 326 ms
57,856 KB
testcase_09 AC 329 ms
58,240 KB
testcase_10 AC 328 ms
57,728 KB
testcase_11 AC 327 ms
57,856 KB
testcase_12 AC 329 ms
58,240 KB
testcase_13 AC 328 ms
57,600 KB
testcase_14 WA -
testcase_15 AC 332 ms
57,728 KB
testcase_16 AC 329 ms
58,240 KB
testcase_17 AC 332 ms
58,240 KB
testcase_18 AC 464 ms
75,276 KB
testcase_19 AC 460 ms
75,008 KB
testcase_20 AC 466 ms
75,396 KB
testcase_21 AC 472 ms
75,264 KB
testcase_22 AC 329 ms
57,728 KB
testcase_23 AC 332 ms
57,984 KB
testcase_24 AC 460 ms
75,136 KB
testcase_25 AC 473 ms
75,280 KB
testcase_26 AC 466 ms
75,264 KB
testcase_27 AC 331 ms
58,496 KB
testcase_28 AC 330 ms
57,856 KB
testcase_29 WA -
testcase_30 AC 327 ms
58,496 KB
testcase_31 AC 329 ms
58,496 KB
testcase_32 AC 328 ms
58,240 KB
testcase_33 AC 329 ms
58,240 KB
testcase_34 WA -
testcase_35 AC 330 ms
58,240 KB
testcase_36 AC 331 ms
57,728 KB
testcase_37 AC 333 ms
57,472 KB
testcase_38 AC 474 ms
74,880 KB
testcase_39 AC 471 ms
74,880 KB
testcase_40 AC 470 ms
75,264 KB
testcase_41 AC 332 ms
57,984 KB
testcase_42 AC 468 ms
75,008 KB
testcase_43 AC 330 ms
58,240 KB
testcase_44 AC 474 ms
75,648 KB
testcase_45 AC 466 ms
75,136 KB
testcase_46 AC 326 ms
57,600 KB
testcase_47 AC 470 ms
74,996 KB
testcase_48 AC 328 ms
57,984 KB
testcase_49 WA -
testcase_50 AC 328 ms
57,856 KB
testcase_51 AC 328 ms
58,112 KB
testcase_52 AC 330 ms
58,496 KB
testcase_53 WA -
testcase_54 AC 271 ms
75,392 KB
testcase_55 AC 464 ms
74,752 KB
testcase_56 AC 330 ms
57,984 KB
testcase_57 AC 327 ms
57,856 KB
testcase_58 AC 331 ms
58,496 KB
testcase_59 AC 330 ms
57,728 KB
testcase_60 AC 329 ms
58,240 KB
testcase_61 AC 330 ms
57,728 KB
testcase_62 AC 330 ms
57,984 KB
testcase_63 AC 328 ms
57,728 KB
testcase_64 AC 330 ms
57,472 KB
testcase_65 AC 422 ms
75,224 KB
testcase_66 AC 326 ms
57,984 KB
testcase_67 AC 434 ms
75,008 KB
testcase_68 AC 328 ms
58,496 KB
testcase_69 AC 327 ms
57,600 KB
testcase_70 AC 328 ms
58,240 KB
testcase_71 AC 459 ms
75,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from sys import stdin, setrecursionlimit
    # setrecursionlimit(1000000)
    input = stdin.readline
    def iinput(): return int(input())
    def sinput(): return input().rstrip()
    def i0input(): return int(input()) - 1
    def linput(): return list(input().split())
    def liinput(): return list(map(int, input().split()))
    def miinput(): return map(int, input().split())
    def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
    def mi0input(): return map(lambda x: int(x) - 1, input().split())
    INF = 1000000000000000000
    MOD = 1000000007

    T = iinput()
    X, A = miinput()
    Y, B = miinput()

    ans = INF
    for i in range(10000000):
        Z = T + B * i
        if Z >= 0:
            ans = min(ans, Z // A * X + i * Y + Z % A)
    print(ans)


main()
0