結果

問題 No.2386 Udon Coupon (Easy)
ユーザー FromBooskaFromBooska
提出日時 2023-07-21 21:40:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-09-21 23:05:45
合計ジャッジ時間 40,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 TLE -
testcase_08 AC 45 ms
51,968 KB
testcase_09 AC 45 ms
51,584 KB
testcase_10 AC 210 ms
60,160 KB
testcase_11 AC 87 ms
60,288 KB
testcase_12 AC 1,579 ms
60,544 KB
testcase_13 TLE -
testcase_14 AC 1,918 ms
60,672 KB
testcase_15 TLE -
testcase_16 AC 1,400 ms
60,800 KB
testcase_17 TLE -
testcase_18 AC 421 ms
60,416 KB
testcase_19 AC 61 ms
60,100 KB
testcase_20 AC 1,218 ms
61,440 KB
testcase_21 TLE -
testcase_22 AC 746 ms
62,592 KB
testcase_23 AC 616 ms
60,928 KB
testcase_24 AC 118 ms
60,032 KB
testcase_25 AC 1,062 ms
60,800 KB
testcase_26 AC 1,996 ms
61,224 KB
testcase_27 TLE -
testcase_28 AC 640 ms
60,288 KB
testcase_29 AC 243 ms
60,160 KB
testcase_30 AC 67 ms
61,568 KB
testcase_31 AC 579 ms
60,288 KB
testcase_32 AC 71 ms
60,416 KB
testcase_33 TLE -
testcase_34 AC 761 ms
60,928 KB
testcase_35 AC 1,447 ms
61,184 KB
testcase_36 TLE -
testcase_37 AC 1,558 ms
61,440 KB
testcase_38 AC 907 ms
60,416 KB
testcase_39 AC 472 ms
60,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 全探索で間に合うか
# c and b

N = int(input())
A, B, C = map(int, input().split())

ans = 0
for c in range(N//10+1):
    b_max = (N-c*10)//5
    for b in range(b_max+1):
        a = (N-c*10-b*5)//3
        calc = a*A+b*B+c*C
        ans = max(ans, calc)
        #print('a', a, 'b', b, 'c', c, 'calc', calc, 'ans', ans)
print(ans)


0