結果

問題 No.1515 Making Many Multiples
ユーザー mkawa2mkawa2
提出日時 2023-11-17 15:50:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 1,311 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-09-26 05:25:00
合計ジャッジ時間 10,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 55 ms
63,616 KB
testcase_02 AC 630 ms
114,048 KB
testcase_03 AC 647 ms
114,816 KB
testcase_04 AC 659 ms
114,432 KB
testcase_05 AC 662 ms
114,688 KB
testcase_06 AC 167 ms
107,904 KB
testcase_07 AC 204 ms
108,032 KB
testcase_08 AC 407 ms
88,960 KB
testcase_09 AC 564 ms
98,688 KB
testcase_10 AC 541 ms
98,944 KB
testcase_11 AC 622 ms
104,776 KB
testcase_12 AC 508 ms
95,616 KB
testcase_13 AC 107 ms
76,416 KB
testcase_14 AC 600 ms
106,496 KB
testcase_15 AC 114 ms
76,672 KB
testcase_16 AC 665 ms
112,256 KB
testcase_17 AC 146 ms
92,288 KB
testcase_18 AC 117 ms
91,648 KB
testcase_19 AC 69 ms
72,960 KB
testcase_20 AC 190 ms
86,016 KB
testcase_21 AC 331 ms
107,648 KB
testcase_22 AC 82 ms
75,904 KB
testcase_23 AC 374 ms
108,544 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 38 ms
52,864 KB
testcase_27 AC 317 ms
107,392 KB
testcase_28 AC 215 ms
107,264 KB
testcase_29 AC 69 ms
71,168 KB
testcase_30 AC 88 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

n,k,x,y=LI()
aa=LI()

x%=k
y%=k
dp=[[-1]*k for _ in range(k)]
dp[x][y]=0
mx=[-1]*k
mx[x]=mx[y]=0

def update(i,j,v):
    if v>dp[i][j]:
        dp[i][j]=dp[j][i]=v
    if v>mx[i]:mx[i]=v
    if v>mx[j]:mx[j]=v

for a in aa:
    a%=k
    ijv=[]
    for i in range(k):
        if mx[i]!=-1:
            ijv.append((i,a,mx[i]))
        j=(-a-i)%k
        pre=dp[i][j]
        if pre!=-1:
            ijv.append((i,j,pre+1))
            ijv.append((i,a,pre+1))
            ijv.append((a,j,pre+1))
    for i,j,v in ijv:update(i,j,v)

print(max(mx))
0