結果
問題 | No.2390 Udon Coupon (Hard) |
ユーザー | cleantted |
提出日時 | 2023-04-26 21:59:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,481 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 104,064 KB |
最終ジャッジ日時 | 2024-07-19 03:05:44 |
合計ジャッジ時間 | 10,341 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
17,920 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 43 ms
12,672 KB |
testcase_06 | WA | - |
testcase_07 | AC | 41 ms
12,544 KB |
testcase_08 | AC | 39 ms
12,416 KB |
testcase_09 | WA | - |
testcase_10 | AC | 42 ms
12,544 KB |
testcase_11 | AC | 41 ms
12,544 KB |
testcase_12 | AC | 57 ms
12,672 KB |
testcase_13 | AC | 47 ms
12,800 KB |
testcase_14 | AC | 45 ms
12,416 KB |
testcase_15 | AC | 42 ms
12,672 KB |
testcase_16 | WA | - |
testcase_17 | AC | 52 ms
12,928 KB |
testcase_18 | AC | 128 ms
14,464 KB |
testcase_19 | AC | 127 ms
14,464 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 | TLE | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
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()