結果
| 問題 |
No.2390 Udon Coupon (Hard)
|
| コンテスト | |
| ユーザー |
cleantted
|
| 提出日時 | 2023-04-26 21:59:42 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,481 bytes |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 104,064 KB |
| 最終ジャッジ日時 | 2024-07-19 03:05:44 |
| 合計ジャッジ時間 | 10,341 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 11 WA * 25 TLE * 1 -- * 10 |
ソースコード
import sys
from collections import deque, Counter
from math import gcd, log10, pi, sqrt, ceil
from bisect import bisect, bisect_left, bisect_right, insort
from typing import Iterable, TypeVar, Union, Tuple, Iterator, List
# import bisect
import copy
import heapq
import itertools
import math
import random
from fractions import Fraction
from functools import lru_cache, partial, cmp_to_key
import operator
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
# import string
# import networkx as nx
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
# mod = 10 ** 9 + 7
mod = 998244353
# mod = 1 << 128
# mod = 10 ** 30 + 1
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]
def read_values(): return tuple(map(int, input().split()))
def read_index(): return tuple(map(lambda x: int(x) - 1, input().split()))
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]
def main():
N = int(input())
S = read_lists(3)
def lcm(a, b):
return a * b // math.gcd(a, b)
g = lcm(S[0][0], lcm(S[1][0], S[2][0]))
gv = max(g // a * b for a, b in S)
res = N // g * gv % mod
N %= g
dp = [0] * (N + 1)
for i in range(N):
dp[i + 1] = max(dp[i + 1], dp[i])
for a, b in S:
if i + a <= N:
dp[i + a] = max(dp[i + a], dp[i] + b)
print((res + dp[-1]) % mod)
if __name__ == "__main__":
main()
cleantted