結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー flygonflygon
提出日時 2022-10-14 21:58:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-06-26 13:56:57
合計ジャッジ時間 6,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 41 ms
58,492 KB
testcase_03 AC 72 ms
58,368 KB
testcase_04 AC 61 ms
58,624 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 84 ms
58,496 KB
testcase_08 AC 85 ms
58,240 KB
testcase_09 AC 83 ms
58,368 KB
testcase_10 AC 77 ms
58,240 KB
testcase_11 AC 47 ms
58,108 KB
testcase_12 AC 85 ms
58,240 KB
testcase_13 AC 72 ms
58,112 KB
testcase_14 AC 63 ms
57,856 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 WA -
testcase_17 AC 84 ms
58,496 KB
testcase_18 AC 36 ms
51,712 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 104 ms
58,368 KB
testcase_23 AC 55 ms
58,368 KB
testcase_24 AC 36 ms
52,204 KB
testcase_25 AC 36 ms
51,712 KB
testcase_26 AC 36 ms
52,480 KB
testcase_27 AC 54 ms
58,112 KB
testcase_28 AC 73 ms
57,856 KB
testcase_29 AC 63 ms
57,984 KB
testcase_30 AC 36 ms
52,096 KB
testcase_31 WA -
testcase_32 AC 86 ms
58,368 KB
testcase_33 AC 74 ms
58,240 KB
testcase_34 AC 62 ms
58,752 KB
testcase_35 AC 36 ms
51,968 KB
testcase_36 WA -
testcase_37 AC 86 ms
58,112 KB
testcase_38 AC 35 ms
52,480 KB
testcase_39 AC 37 ms
52,352 KB
testcase_40 AC 36 ms
52,352 KB
testcase_41 AC 72 ms
57,984 KB
testcase_42 AC 36 ms
52,352 KB
testcase_43 AC 44 ms
58,368 KB
testcase_44 AC 36 ms
52,224 KB
testcase_45 AC 35 ms
52,480 KB
testcase_46 AC 68 ms
58,240 KB
testcase_47 AC 37 ms
51,968 KB
testcase_48 AC 72 ms
57,988 KB
testcase_49 AC 63 ms
58,368 KB
testcase_50 AC 35 ms
52,352 KB
testcase_51 WA -
testcase_52 AC 85 ms
58,112 KB
testcase_53 AC 66 ms
57,992 KB
testcase_54 AC 40 ms
58,368 KB
testcase_55 AC 37 ms
52,352 KB
testcase_56 AC 98 ms
58,368 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 97 ms
58,240 KB
testcase_60 WA -
testcase_61 AC 96 ms
57,984 KB
testcase_62 WA -
testcase_63 AC 97 ms
58,244 KB
testcase_64 WA -
testcase_65 AC 114 ms
58,880 KB
testcase_66 WA -
testcase_67 AC 121 ms
58,752 KB
testcase_68 WA -
testcase_69 AC 95 ms
57,984 KB
testcase_70 WA -
testcase_71 AC 139 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
x,a = map(int,input().split())
y,b = map(int,input().split())
ans = float("inf")
if t >= 0:
  for i in range(t+1):
    back = b*i
    z = t+back
    ans = min(ans, y*i+(z//a)*x + z%a)
else:
  t *= -1
  for i in range(10**7):
    fwd = a*i
    if fwd > 10**7: break
    z = t + fwd
    ans = min(ans, y*((z+b-1)//b) + b*((z+b-1)//b)-z)
    

print(ans)
0