結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー kept1994kept1994
提出日時 2022-11-03 20:55:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 54,040 KB
最終ジャッジ日時 2024-07-18 03:52:39
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,752 KB
testcase_01 AC 35 ms
53,400 KB
testcase_02 AC 36 ms
52,808 KB
testcase_03 AC 36 ms
52,824 KB
testcase_04 AC 37 ms
52,064 KB
testcase_05 AC 34 ms
53,840 KB
testcase_06 AC 33 ms
53,376 KB
testcase_07 AC 34 ms
52,284 KB
testcase_08 AC 33 ms
53,660 KB
testcase_09 AC 33 ms
52,404 KB
testcase_10 AC 32 ms
52,504 KB
testcase_11 AC 32 ms
53,012 KB
testcase_12 AC 33 ms
52,332 KB
testcase_13 AC 34 ms
51,996 KB
testcase_14 AC 34 ms
51,996 KB
testcase_15 AC 34 ms
53,836 KB
testcase_16 AC 35 ms
53,220 KB
testcase_17 AC 35 ms
53,292 KB
testcase_18 AC 37 ms
52,692 KB
testcase_19 AC 37 ms
52,316 KB
testcase_20 AC 35 ms
52,352 KB
testcase_21 AC 35 ms
53,364 KB
testcase_22 AC 38 ms
52,744 KB
testcase_23 AC 36 ms
52,528 KB
testcase_24 AC 34 ms
52,416 KB
testcase_25 AC 34 ms
53,124 KB
testcase_26 AC 35 ms
52,124 KB
testcase_27 AC 34 ms
52,888 KB
testcase_28 AC 33 ms
52,748 KB
testcase_29 AC 33 ms
52,272 KB
testcase_30 AC 34 ms
52,372 KB
testcase_31 AC 33 ms
52,676 KB
testcase_32 AC 32 ms
53,376 KB
testcase_33 AC 33 ms
53,560 KB
testcase_34 AC 35 ms
53,500 KB
testcase_35 AC 34 ms
52,240 KB
testcase_36 AC 33 ms
52,200 KB
testcase_37 AC 33 ms
53,748 KB
testcase_38 AC 35 ms
52,896 KB
testcase_39 AC 35 ms
52,896 KB
testcase_40 AC 32 ms
53,536 KB
testcase_41 AC 32 ms
52,596 KB
testcase_42 AC 34 ms
52,820 KB
testcase_43 AC 33 ms
53,228 KB
testcase_44 AC 33 ms
53,756 KB
testcase_45 AC 36 ms
52,948 KB
testcase_46 AC 35 ms
51,872 KB
testcase_47 AC 35 ms
52,612 KB
testcase_48 AC 34 ms
52,608 KB
testcase_49 AC 33 ms
52,864 KB
testcase_50 AC 35 ms
52,596 KB
testcase_51 AC 33 ms
52,392 KB
testcase_52 AC 33 ms
53,272 KB
testcase_53 AC 33 ms
52,484 KB
testcase_54 AC 31 ms
52,944 KB
testcase_55 AC 33 ms
52,404 KB
testcase_56 AC 33 ms
52,740 KB
testcase_57 AC 34 ms
52,644 KB
testcase_58 AC 32 ms
53,048 KB
testcase_59 AC 33 ms
52,664 KB
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
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 #

#!/usr/bin/env python3
INF = 10 ** 16
def main():
    T = int(input())
    X, A = map(int, input().split())
    Y, B = map(int, input().split())
    if T > 0:
        p, q = divmod(T, A)
        path1 = p * X + q # A + walk
        if q == 0:
            print(path1)
            return
        back = A - q
        tt, ss = divmod(back, B)
        if ss == 0:
            path2 = (p + 1) * X + tt * Y
            print(min(path1, path2))
        else:
            backagain = B - ss
            path2 = (p + 1) * X + (tt + 1) * Y + backagain # A + B + walk
            print(min(path1, path2))
    else:
        p, q = divmod(-T, B)
        back = B - q
        if q == 0:
            print(p * Y)
        else:
            tt, ss = divmod(back, A)
            print((p + 1) * Y + tt * X + ss)
    return

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