結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー kept1994kept1994
提出日時 2022-11-03 20:53:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 1,549 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-07-18 03:51:45
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,792 KB
testcase_01 AC 34 ms
53,552 KB
testcase_02 AC 34 ms
52,028 KB
testcase_03 AC 33 ms
52,328 KB
testcase_04 AC 33 ms
53,084 KB
testcase_05 AC 36 ms
52,336 KB
testcase_06 AC 37 ms
52,476 KB
testcase_07 AC 34 ms
52,528 KB
testcase_08 AC 35 ms
52,272 KB
testcase_09 AC 36 ms
53,964 KB
testcase_10 AC 34 ms
53,932 KB
testcase_11 AC 34 ms
53,188 KB
testcase_12 AC 35 ms
52,004 KB
testcase_13 AC 34 ms
52,336 KB
testcase_14 AC 35 ms
52,808 KB
testcase_15 AC 37 ms
52,740 KB
testcase_16 AC 34 ms
52,820 KB
testcase_17 AC 34 ms
52,956 KB
testcase_18 AC 34 ms
52,504 KB
testcase_19 AC 34 ms
52,840 KB
testcase_20 AC 34 ms
52,200 KB
testcase_21 AC 36 ms
53,408 KB
testcase_22 AC 34 ms
53,012 KB
testcase_23 AC 35 ms
53,588 KB
testcase_24 AC 35 ms
52,272 KB
testcase_25 AC 34 ms
53,868 KB
testcase_26 AC 34 ms
52,404 KB
testcase_27 AC 34 ms
52,232 KB
testcase_28 AC 35 ms
52,628 KB
testcase_29 AC 35 ms
52,532 KB
testcase_30 AC 35 ms
53,704 KB
testcase_31 AC 35 ms
52,668 KB
testcase_32 AC 36 ms
52,348 KB
testcase_33 AC 36 ms
52,796 KB
testcase_34 AC 35 ms
52,480 KB
testcase_35 AC 36 ms
52,700 KB
testcase_36 AC 35 ms
51,964 KB
testcase_37 AC 37 ms
53,072 KB
testcase_38 AC 36 ms
53,156 KB
testcase_39 AC 35 ms
53,780 KB
testcase_40 WA -
testcase_41 AC 33 ms
53,076 KB
testcase_42 AC 33 ms
52,632 KB
testcase_43 AC 34 ms
52,032 KB
testcase_44 AC 34 ms
52,292 KB
testcase_45 AC 34 ms
52,832 KB
testcase_46 AC 34 ms
52,248 KB
testcase_47 AC 34 ms
51,936 KB
testcase_48 AC 34 ms
52,940 KB
testcase_49 AC 34 ms
52,276 KB
testcase_50 AC 36 ms
52,348 KB
testcase_51 AC 34 ms
52,600 KB
testcase_52 AC 36 ms
52,332 KB
testcase_53 WA -
testcase_54 AC 34 ms
53,020 KB
testcase_55 WA -
testcase_56 AC 37 ms
52,292 KB
testcase_57 AC 36 ms
52,872 KB
testcase_58 AC 36 ms
53,688 KB
testcase_59 AC 38 ms
53,220 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)
        else:
            tt, ss = divmod(back, A)
            print((p + 1) * Y + tt * X + ss)
    return

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