結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー H20H20
提出日時 2022-10-14 23:17:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,004 KB
最終ジャッジ日時 2024-06-26 17:07:33
合計ジャッジ時間 22,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
59,660 KB
testcase_01 AC 126 ms
59,640 KB
testcase_02 AC 129 ms
59,344 KB
testcase_03 WA -
testcase_04 AC 67 ms
57,988 KB
testcase_05 AC 114 ms
59,348 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 130 ms
59,556 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 68 ms
58,268 KB
testcase_15 AC 114 ms
58,768 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 131 ms
61,592 KB
testcase_19 AC 132 ms
60,944 KB
testcase_20 AC 131 ms
61,256 KB
testcase_21 AC 133 ms
61,252 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 129 ms
60,452 KB
testcase_25 AC 133 ms
60,872 KB
testcase_26 AC 134 ms
60,552 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 69 ms
58,852 KB
testcase_30 AC 115 ms
58,752 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 67 ms
58,356 KB
testcase_35 AC 114 ms
59,056 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 132 ms
60,848 KB
testcase_39 AC 133 ms
60,492 KB
testcase_40 AC 133 ms
61,048 KB
testcase_41 WA -
testcase_42 AC 132 ms
62,296 KB
testcase_43 AC 128 ms
60,912 KB
testcase_44 AC 134 ms
61,132 KB
testcase_45 AC 133 ms
60,364 KB
testcase_46 WA -
testcase_47 AC 133 ms
61,020 KB
testcase_48 WA -
testcase_49 AC 68 ms
59,108 KB
testcase_50 AC 116 ms
59,164 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 67 ms
58,208 KB
testcase_54 AC 102 ms
60,304 KB
testcase_55 AC 133 ms
61,176 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 159 ms
60,004 KB
testcase_65 AC 152 ms
60,260 KB
testcase_66 AC 156 ms
61,012 KB
testcase_67 AC 158 ms
60,160 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 180 ms
61,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
X,A = map(int, input().split())
Y,B = map(int, input().split())
ans = 10**20
for y in range(10**7+10):
    day = -y*B
    if T>=day:
        x = (T-day)//A
        ans = min(ans,y*Y+(T-day),y*Y+x*X+abs(T-(y*A-x*B)))
print(ans)

0