結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-04-27 14:42:35
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 816,512 KB
最終ジャッジ日時 2024-07-19 03:06:46
合計ジャッジ時間 19,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,032 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 TLE -
testcase_04 WA -
testcase_05 AC 90 ms
12,032 KB
testcase_06 WA -
testcase_07 AC 76 ms
12,160 KB
testcase_08 AC 1,551 ms
28,928 KB
testcase_09 RE -
testcase_10 AC 494 ms
16,768 KB
testcase_11 AC 82 ms
12,288 KB
testcase_12 AC 92 ms
12,032 KB
testcase_13 AC 736 ms
19,712 KB
testcase_14 AC 733 ms
19,840 KB
testcase_15 AC 78 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 349 ms
15,232 KB
testcase_18 AC 707 ms
19,200 KB
testcase_19 AC 828 ms
20,096 KB
testcase_20 AC 78 ms
12,160 KB
testcase_21 WA -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 MLE -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

mod = 998244353
N = gets.to_i
A = Array.new(3)
B = Array.new(3)
(0..2).each do |i|
  A[i], B[i] = gets.split.map(&:to_i)
end
N2 = A[0]*A[1]*A[2]*3
ans = [B[0]*A[1]*A[2],A[0]*B[1]*A[2],A[0]*A[1]*B[2]].max * 3 * N.div(N2) % mod

dp = Array.new(N2+1, 0)

(0..N2).each do |i|
  (0..2).each do |j|
    dp[i+A[j]] = [dp[i+A[j]], dp[i]+B[j]].max if i+A[j] <= N2
  end
end
puts (ans+dp[N%N2])%mod
0