結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー kept1994kept1994
提出日時 2022-11-03 21:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 75,372 KB
最終ジャッジ日時 2024-07-18 04:06:57
合計ジャッジ時間 26,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
58,952 KB
testcase_01 AC 329 ms
58,712 KB
testcase_02 AC 330 ms
58,652 KB
testcase_03 AC 332 ms
58,272 KB
testcase_04 AC 68 ms
57,800 KB
testcase_05 AC 331 ms
57,408 KB
testcase_06 AC 330 ms
59,276 KB
testcase_07 AC 328 ms
57,660 KB
testcase_08 AC 330 ms
58,116 KB
testcase_09 AC 331 ms
58,192 KB
testcase_10 AC 329 ms
58,152 KB
testcase_11 AC 329 ms
59,252 KB
testcase_12 AC 328 ms
59,672 KB
testcase_13 AC 329 ms
57,544 KB
testcase_14 AC 68 ms
58,108 KB
testcase_15 AC 333 ms
58,776 KB
testcase_16 AC 327 ms
58,648 KB
testcase_17 AC 327 ms
57,784 KB
testcase_18 AC 460 ms
74,768 KB
testcase_19 AC 453 ms
75,124 KB
testcase_20 AC 461 ms
75,372 KB
testcase_21 AC 465 ms
74,712 KB
testcase_22 AC 330 ms
58,720 KB
testcase_23 AC 330 ms
59,040 KB
testcase_24 AC 454 ms
74,716 KB
testcase_25 AC 469 ms
74,772 KB
testcase_26 AC 469 ms
74,972 KB
testcase_27 AC 332 ms
59,872 KB
testcase_28 AC 332 ms
58,332 KB
testcase_29 AC 68 ms
57,404 KB
testcase_30 AC 331 ms
59,652 KB
testcase_31 AC 332 ms
58,712 KB
testcase_32 AC 329 ms
57,412 KB
testcase_33 AC 330 ms
58,552 KB
testcase_34 AC 67 ms
57,960 KB
testcase_35 AC 327 ms
59,808 KB
testcase_36 AC 336 ms
59,348 KB
testcase_37 AC 330 ms
59,108 KB
testcase_38 AC 464 ms
74,996 KB
testcase_39 AC 461 ms
75,052 KB
testcase_40 AC 461 ms
74,772 KB
testcase_41 AC 327 ms
57,956 KB
testcase_42 AC 466 ms
74,724 KB
testcase_43 AC 333 ms
58,184 KB
testcase_44 AC 471 ms
74,768 KB
testcase_45 AC 463 ms
74,712 KB
testcase_46 AC 331 ms
58,060 KB
testcase_47 AC 462 ms
75,096 KB
testcase_48 AC 327 ms
58,648 KB
testcase_49 AC 67 ms
57,744 KB
testcase_50 AC 331 ms
58,852 KB
testcase_51 AC 332 ms
58,432 KB
testcase_52 AC 328 ms
58,224 KB
testcase_53 AC 67 ms
57,992 KB
testcase_54 AC 272 ms
74,464 KB
testcase_55 AC 457 ms
74,732 KB
testcase_56 AC 330 ms
59,248 KB
testcase_57 AC 332 ms
57,716 KB
testcase_58 AC 332 ms
59,448 KB
testcase_59 AC 324 ms
59,020 KB
testcase_60 AC 327 ms
57,904 KB
testcase_61 AC 328 ms
58,424 KB
testcase_62 AC 333 ms
57,860 KB
testcase_63 AC 332 ms
59,676 KB
testcase_64 AC 331 ms
58,964 KB
testcase_65 AC 417 ms
75,092 KB
testcase_66 AC 326 ms
59,436 KB
testcase_67 AC 430 ms
75,112 KB
testcase_68 AC 323 ms
59,140 KB
testcase_69 AC 328 ms
58,024 KB
testcase_70 AC 324 ms
58,048 KB
testcase_71 AC 438 ms
75,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
def main():
    T = int(input())
    X, A = map(int, input().split())
    Y, B = map(int, input().split())
    # p * X + q + r * Y
    ans = 10 ** 15
    for r in range(10 ** 7 + 1):
        dist = T + r * B
        if dist < 0:
            continue
        p, q = dist // A, dist % A
        ans = min(ans, p * X + q + r * Y)
    print(ans)
    return

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