結果
問題 | No.2390 Udon Coupon (Hard) |
ユーザー | shogo314 |
提出日時 | 2023-07-21 23:17:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 689 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 80,964 KB |
最終ジャッジ日時 | 2024-09-22 00:47:02 |
合計ジャッジ時間 | 8,989 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,728 KB |
testcase_01 | AC | 42 ms
52,096 KB |
testcase_02 | AC | 53 ms
61,952 KB |
testcase_03 | AC | 63 ms
62,080 KB |
testcase_04 | AC | 54 ms
61,824 KB |
testcase_05 | AC | 61 ms
61,312 KB |
testcase_06 | AC | 39 ms
52,352 KB |
testcase_07 | AC | 39 ms
52,224 KB |
testcase_08 | AC | 38 ms
52,096 KB |
testcase_09 | AC | 47 ms
60,928 KB |
testcase_10 | AC | 39 ms
52,096 KB |
testcase_11 | AC | 39 ms
52,480 KB |
testcase_12 | AC | 63 ms
63,616 KB |
testcase_13 | AC | 45 ms
58,752 KB |
testcase_14 | AC | 39 ms
52,096 KB |
testcase_15 | AC | 38 ms
51,968 KB |
testcase_16 | AC | 39 ms
52,352 KB |
testcase_17 | AC | 45 ms
59,136 KB |
testcase_18 | AC | 47 ms
60,800 KB |
testcase_19 | AC | 46 ms
60,396 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 | 133 ms
61,312 KB |
testcase_40 | AC | 338 ms
66,176 KB |
testcase_41 | AC | 1,920 ms
74,496 KB |
testcase_42 | AC | 236 ms
65,920 KB |
testcase_43 | AC | 64 ms
63,616 KB |
testcase_44 | TLE | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
import math N = int(input()) AB = [tuple(map(int, input().split())) for i in range(3)] ans = 0 g = 1 for A, B in AB: g = g*A//math.gcd(g, A) for A, B in AB: ans = max(ans, N//g*((g//A)*B)) N %= g g=AB[1][0]*AB[2][0]//math.gcd(AB[1][0],AB[2][0]) h=max([(g//A)*B for A,B in AB[1:]]) tmp_max=0 for i in range(N+1): if AB[0][0]*i>N: break tmp=AB[0][1]*i m=N-AB[0][0]*i tmp+=(m//g)*h m%=g tmp_max_=0 for j in range(m+1): if AB[1][0]*j>m: break tmp_=AB[1][1]*j o=m-j*AB[1][0] tmp_+=AB[2][1]*(o//AB[2][0]) tmp_max_=max(tmp_max_,tmp_) tmp+=tmp_max_ tmp_max=max(tmp,tmp_max) print(ans+tmp_max)