結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー kept1994kept1994
提出日時 2022-11-03 20:43:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-07-18 03:45:37
合計ジャッジ時間 4,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,404 KB
testcase_01 AC 38 ms
51,756 KB
testcase_02 AC 36 ms
52,756 KB
testcase_03 AC 32 ms
52,532 KB
testcase_04 WA -
testcase_05 AC 32 ms
53,312 KB
testcase_06 AC 34 ms
52,620 KB
testcase_07 AC 32 ms
51,996 KB
testcase_08 AC 32 ms
52,408 KB
testcase_09 AC 32 ms
52,196 KB
testcase_10 AC 31 ms
52,700 KB
testcase_11 AC 32 ms
52,516 KB
testcase_12 AC 33 ms
51,808 KB
testcase_13 AC 35 ms
53,132 KB
testcase_14 WA -
testcase_15 AC 31 ms
52,212 KB
testcase_16 AC 31 ms
53,604 KB
testcase_17 AC 31 ms
52,676 KB
testcase_18 AC 31 ms
52,580 KB
testcase_19 AC 31 ms
52,344 KB
testcase_20 AC 31 ms
53,208 KB
testcase_21 AC 31 ms
52,728 KB
testcase_22 AC 30 ms
52,204 KB
testcase_23 AC 32 ms
52,688 KB
testcase_24 AC 33 ms
52,316 KB
testcase_25 AC 32 ms
53,428 KB
testcase_26 AC 31 ms
52,036 KB
testcase_27 AC 30 ms
52,804 KB
testcase_28 AC 31 ms
52,352 KB
testcase_29 WA -
testcase_30 AC 32 ms
52,764 KB
testcase_31 AC 31 ms
53,144 KB
testcase_32 AC 31 ms
53,064 KB
testcase_33 AC 31 ms
53,092 KB
testcase_34 WA -
testcase_35 AC 32 ms
51,868 KB
testcase_36 AC 33 ms
52,680 KB
testcase_37 AC 36 ms
52,396 KB
testcase_38 AC 33 ms
52,500 KB
testcase_39 AC 32 ms
51,872 KB
testcase_40 WA -
testcase_41 AC 31 ms
52,748 KB
testcase_42 AC 32 ms
52,824 KB
testcase_43 AC 33 ms
53,076 KB
testcase_44 AC 31 ms
52,076 KB
testcase_45 AC 31 ms
52,804 KB
testcase_46 AC 31 ms
52,284 KB
testcase_47 AC 30 ms
53,380 KB
testcase_48 AC 30 ms
52,404 KB
testcase_49 WA -
testcase_50 AC 32 ms
52,628 KB
testcase_51 AC 32 ms
53,844 KB
testcase_52 AC 30 ms
52,372 KB
testcase_53 WA -
testcase_54 AC 32 ms
52,000 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 33 ms
53,184 KB
testcase_58 AC 33 ms
52,212 KB
testcase_59 WA -
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
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
        back = A - q
        tt, ss = divmod(back, B)
        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
        tt, ss = divmod(back, A)
        print((p + 1) * Y + tt * X + ss)
    return

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