結果

問題 No.1515 Making Many Multiples
ユーザー tktk_snsntktk_snsn
提出日時 2021-05-24 21:37:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-10-13 05:53:53
合計ジャッジ時間 6,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 81 ms
63,744 KB
testcase_02 AC 364 ms
107,520 KB
testcase_03 AC 381 ms
108,032 KB
testcase_04 AC 360 ms
107,348 KB
testcase_05 AC 373 ms
107,936 KB
testcase_06 AC 160 ms
107,740 KB
testcase_07 AC 191 ms
107,904 KB
testcase_08 AC 154 ms
83,072 KB
testcase_09 AC 247 ms
90,880 KB
testcase_10 AC 239 ms
90,880 KB
testcase_11 AC 289 ms
90,752 KB
testcase_12 AC 210 ms
89,088 KB
testcase_13 AC 66 ms
69,632 KB
testcase_14 AC 321 ms
91,008 KB
testcase_15 AC 66 ms
69,504 KB
testcase_16 AC 349 ms
105,216 KB
testcase_17 AC 117 ms
91,692 KB
testcase_18 AC 110 ms
91,904 KB
testcase_19 AC 62 ms
73,344 KB
testcase_20 AC 119 ms
84,864 KB
testcase_21 AC 228 ms
106,880 KB
testcase_22 AC 58 ms
67,584 KB
testcase_23 AC 253 ms
107,008 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 40 ms
58,368 KB
testcase_26 AC 36 ms
51,840 KB
testcase_27 AC 260 ms
106,792 KB
testcase_28 AC 177 ms
107,008 KB
testcase_29 AC 57 ms
66,304 KB
testcase_30 AC 68 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, x, y = map(int, input().split())
A = list(map(lambda x: int(x) % K, input().split()))
x %= K
y %= K

# dp[i,j]: 手持ちがi,j -> 最大スコア
inf = 10**5
inf = 10
dp = [[-inf] * K for _ in range(K)]
memo = [-inf] * K
dp[x][y] = 0
dp[y][x] = 0
memo[x] = 0
memo[y] = 0

for a in A:
    for x in range(K):
        y = (K - x - a) % K
        if dp[x][y] >= 0:
            dp[x][y] += 1
            memo[x] = max(memo[x], dp[x][y])
    for x in range(K):
        if memo[x] < 0:
            continue
        dp[x][a] = max(dp[x][a], memo[x])
        dp[a][x] = max(dp[x][a], memo[x])
    memo[a] = max(dp[a])

ans = 0
for i in range(K):
    for j in range(K):
        ans = max(ans, dp[i][j])
print(ans)
0