結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
58,776 KB
testcase_01 AC 122 ms
58,772 KB
testcase_02 AC 119 ms
58,736 KB
testcase_03 WA -
testcase_04 AC 58 ms
58,168 KB
testcase_05 AC 115 ms
59,612 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 129 ms
60,836 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
58,508 KB
testcase_15 AC 114 ms
59,536 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 131 ms
60,332 KB
testcase_19 AC 130 ms
60,056 KB
testcase_20 AC 132 ms
60,304 KB
testcase_21 AC 134 ms
61,052 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 132 ms
61,476 KB
testcase_25 AC 134 ms
61,944 KB
testcase_26 AC 134 ms
60,444 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 58 ms
58,572 KB
testcase_30 AC 114 ms
59,012 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 58 ms
57,636 KB
testcase_35 AC 115 ms
59,572 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 132 ms
60,260 KB
testcase_39 AC 132 ms
60,200 KB
testcase_40 AC 133 ms
61,944 KB
testcase_41 WA -
testcase_42 AC 131 ms
61,460 KB
testcase_43 AC 128 ms
61,140 KB
testcase_44 AC 134 ms
61,000 KB
testcase_45 AC 133 ms
61,060 KB
testcase_46 WA -
testcase_47 AC 133 ms
60,716 KB
testcase_48 WA -
testcase_49 AC 56 ms
57,648 KB
testcase_50 AC 113 ms
59,300 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 57 ms
57,876 KB
testcase_54 AC 96 ms
58,924 KB
testcase_55 AC 121 ms
60,976 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 154 ms
59,764 KB
testcase_65 AC 152 ms
61,304 KB
testcase_66 AC 150 ms
60,228 KB
testcase_67 AC 154 ms
60,408 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 AC 174 ms
60,788 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):
    before = -T-y*B
    if before<=0:
        x = abs(before)//A
        ans = min(ans,y*Y-before,y*Y+x*X+abs(T-(y*A-x*B)))
print(ans)

0