結果

問題 No.1515 Making Many Multiples
ユーザー だれだれ
提出日時 2021-04-28 18:01:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 942 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 116,928 KB
最終ジャッジ日時 2024-07-07 15:16:04
合計ジャッジ時間 13,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 48 ms
62,336 KB
testcase_02 AC 942 ms
115,456 KB
testcase_03 AC 925 ms
116,352 KB
testcase_04 AC 924 ms
116,928 KB
testcase_05 AC 925 ms
115,200 KB
testcase_06 AC 328 ms
107,904 KB
testcase_07 AC 455 ms
109,056 KB
testcase_08 AC 307 ms
84,136 KB
testcase_09 AC 530 ms
94,976 KB
testcase_10 AC 550 ms
95,232 KB
testcase_11 AC 726 ms
112,964 KB
testcase_12 AC 486 ms
94,336 KB
testcase_13 AC 90 ms
76,288 KB
testcase_14 AC 741 ms
113,712 KB
testcase_15 AC 93 ms
76,704 KB
testcase_16 AC 854 ms
114,616 KB
testcase_17 AC 234 ms
95,872 KB
testcase_18 AC 193 ms
98,696 KB
testcase_19 AC 103 ms
85,376 KB
testcase_20 AC 245 ms
90,496 KB
testcase_21 AC 578 ms
116,552 KB
testcase_22 AC 82 ms
76,288 KB
testcase_23 AC 643 ms
115,416 KB
testcase_24 AC 37 ms
52,352 KB
testcase_25 AC 40 ms
57,856 KB
testcase_26 AC 35 ms
51,584 KB
testcase_27 AC 618 ms
107,376 KB
testcase_28 AC 392 ms
107,552 KB
testcase_29 AC 86 ms
78,208 KB
testcase_30 AC 111 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

n, k, X, Y = map(int, input().split())
dp = [[-1e9] * k for _ in range(k)]
a = list(map(int, input().split()))

for i in range(n):
    a[i] %= k

X %= k
Y %= k

mx = [-1e9] * k
mx[X] = mx[Y] = 0

dp[X][Y] = 0
dp[Y][X] = 0

for i in range(n):
    x = a[i]
    for j in range(k):
        l = (k - (j + x) % k) % k
        dp[j][l] += 1
        if dp[j][l] > mx[j]:
            mx[j] = dp[j][l]
        if dp[j][l] > mx[l]:
            mx[l] = dp[j][l]
    
    for j in range(k):
        if dp[j][x] < mx[j]:
            dp[j][x] = mx[j]
        if dp[x][j] < mx[j]:
            dp[x][j] = mx[j]
    
    for j in range(k):
        if mx[x] < mx[j]:
            mx[x] = mx[j]

ans = 0
for i in range(k):
    for j in range(k):
        if ans < dp[i][j]:
            ans = dp[i][j]

print(ans)
0