結果

問題 No.2390 Udon Coupon (Hard)
ユーザー pitPpitP
提出日時 2023-07-21 22:32:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-09-22 00:00:30
合計ジャッジ時間 3,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 39 ms
51,940 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 38 ms
51,584 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 42 ms
52,096 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 39 ms
52,096 KB
testcase_40 WA -
testcase_41 AC 38 ms
51,840 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 37 ms
52,192 KB
testcase_45 AC 38 ms
52,192 KB
testcase_46 WA -
testcase_47 AC 38 ms
51,968 KB
testcase_48 AC 39 ms
51,968 KB
testcase_49 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A1, B1 = map(int, input().split())
A2, B2 = map(int, input().split())
A3, B3 = map(int, input().split())

if A2 * B1 <= A1 * B2:
    A1, B1, A2, B2 = A2, B2, A1, B1
if A3 * B2 <= A2 * B3:
    A2, B2, A3, B3 = A3, B3, A2, B2
if A2 * B1 <= A1 * B2:
    A1, B1, A2, B2 = A2, B2, A1, B1
if A3 * B2 <= A2 * B3:
    A2, B2, A3, B3 = A3, B3, A2, B2

ans = N // A1 * B1
N = N - (N // A1) * A1
ans += N // A2 * B2
N = N - (N // A2) * A2
ans += N // A3 * B3
N = N - (N // A3) * A3
print(ans)
0