結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー kept1994kept1994
提出日時 2022-11-03 21:18:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 75,456 KB
最終ジャッジ日時 2024-07-18 04:05:05
合計ジャッジ時間 24,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
58,580 KB
testcase_01 AC 305 ms
58,904 KB
testcase_02 AC 327 ms
58,452 KB
testcase_03 AC 311 ms
59,276 KB
testcase_04 AC 60 ms
57,540 KB
testcase_05 AC 310 ms
57,592 KB
testcase_06 AC 308 ms
57,704 KB
testcase_07 AC 315 ms
59,056 KB
testcase_08 AC 313 ms
59,956 KB
testcase_09 AC 304 ms
57,712 KB
testcase_10 AC 308 ms
59,012 KB
testcase_11 AC 307 ms
58,788 KB
testcase_12 AC 316 ms
58,580 KB
testcase_13 AC 321 ms
58,116 KB
testcase_14 AC 64 ms
58,164 KB
testcase_15 AC 322 ms
57,720 KB
testcase_16 AC 312 ms
58,796 KB
testcase_17 AC 310 ms
59,288 KB
testcase_18 AC 447 ms
75,056 KB
testcase_19 AC 429 ms
74,764 KB
testcase_20 AC 421 ms
74,720 KB
testcase_21 AC 436 ms
74,952 KB
testcase_22 AC 310 ms
58,644 KB
testcase_23 AC 314 ms
58,856 KB
testcase_24 AC 423 ms
75,008 KB
testcase_25 AC 431 ms
74,884 KB
testcase_26 AC 422 ms
74,468 KB
testcase_27 AC 301 ms
58,960 KB
testcase_28 AC 316 ms
58,396 KB
testcase_29 AC 61 ms
57,340 KB
testcase_30 AC 305 ms
58,448 KB
testcase_31 AC 307 ms
57,852 KB
testcase_32 AC 315 ms
58,532 KB
testcase_33 AC 305 ms
58,480 KB
testcase_34 AC 64 ms
57,988 KB
testcase_35 AC 305 ms
58,408 KB
testcase_36 AC 301 ms
58,848 KB
testcase_37 AC 301 ms
58,772 KB
testcase_38 AC 410 ms
74,472 KB
testcase_39 AC 427 ms
75,456 KB
testcase_40 AC 419 ms
74,448 KB
testcase_41 AC 301 ms
58,856 KB
testcase_42 AC 410 ms
75,432 KB
testcase_43 AC 316 ms
57,856 KB
testcase_44 AC 437 ms
75,068 KB
testcase_45 AC 421 ms
74,968 KB
testcase_46 AC 308 ms
58,028 KB
testcase_47 AC 426 ms
74,448 KB
testcase_48 AC 307 ms
57,508 KB
testcase_49 AC 61 ms
58,196 KB
testcase_50 AC 303 ms
57,952 KB
testcase_51 AC 306 ms
58,320 KB
testcase_52 AC 304 ms
57,856 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 300 ms
58,600 KB
testcase_57 AC 310 ms
58,336 KB
testcase_58 AC 299 ms
57,716 KB
testcase_59 AC 310 ms
58,300 KB
testcase_60 AC 329 ms
58,096 KB
testcase_61 AC 315 ms
58,204 KB
testcase_62 AC 313 ms
57,784 KB
testcase_63 AC 308 ms
58,980 KB
testcase_64 AC 305 ms
58,088 KB
testcase_65 AC 388 ms
74,952 KB
testcase_66 AC 309 ms
58,504 KB
testcase_67 AC 397 ms
75,256 KB
testcase_68 AC 306 ms
58,972 KB
testcase_69 AC 307 ms
58,984 KB
testcase_70 AC 305 ms
58,596 KB
testcase_71 AC 428 ms
74,540 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 ** 12
    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