結果

問題 No.1977 Extracting at Constant Intervals
ユーザー tassei903tassei903
提出日時 2022-05-17 02:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 92,668 KB
最終ジャッジ日時 2024-10-09 09:41:25
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,656 KB
testcase_01 AC 37 ms
52,668 KB
testcase_02 AC 52 ms
67,760 KB
testcase_03 AC 81 ms
89,688 KB
testcase_04 AC 51 ms
66,660 KB
testcase_05 AC 85 ms
92,668 KB
testcase_06 AC 59 ms
76,612 KB
testcase_07 AC 69 ms
83,408 KB
testcase_08 AC 66 ms
81,312 KB
testcase_09 AC 56 ms
71,480 KB
testcase_10 AC 80 ms
86,608 KB
testcase_11 AC 52 ms
65,684 KB
testcase_12 AC 52 ms
67,956 KB
testcase_13 AC 67 ms
83,572 KB
testcase_14 AC 77 ms
91,348 KB
testcase_15 AC 58 ms
75,144 KB
testcase_16 AC 74 ms
87,656 KB
testcase_17 AC 85 ms
90,296 KB
testcase_18 AC 65 ms
77,460 KB
testcase_19 AC 52 ms
68,352 KB
testcase_20 AC 82 ms
92,224 KB
testcase_21 AC 80 ms
86,248 KB
testcase_22 AC 73 ms
89,032 KB
testcase_23 AC 59 ms
70,208 KB
testcase_24 AC 79 ms
86,652 KB
testcase_25 AC 50 ms
64,772 KB
testcase_26 AC 51 ms
65,864 KB
testcase_27 AC 69 ms
78,896 KB
testcase_28 AC 54 ms
68,752 KB
testcase_29 AC 61 ms
77,208 KB
testcase_30 AC 83 ms
90,012 KB
testcase_31 AC 58 ms
74,236 KB
testcase_32 AC 62 ms
76,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
def xgcd(a, b):
    x0, y0, x1, y1 = 1, 0, 0, 1
    while b != 0:
        q, a, b = a // b, b, a % b
        x0, x1 = x1, x0 - q * x1
        y0, y1 = y1, y0 - q * y1
    return a, x0, y0

def modinv(a, m):
    g, x, y = xgcd(a, m)
    if g != 1:
        raise Exception('modular inverse does not exist')
    else:
        return x % m
N,M,L = na()
a = na()
from math import gcd
ans = -float("inf")
g = gcd(N, L)
n = N//g
R = L//g
u = modinv(R, n)
for x in range(g):
    z = [0]
    for i in range(n):
        z.append(z[-1] + a[(x + i * L)%N])
    f = R-(-n*M)%R
    l = 0
    r = (n * M - 1) // R + 1
    for i in range(n):
        if i < f:
            ans = max(ans, z[r%n] - z[l%n] + z[-1] * (r//n-l//n))
            #print("< ",l, r,z[r%n] - z[l%n] + z[-1] * (r//n-l//n))
        l += u
        r += u
    l = 0
    r = (n * M - 1) // R 
    for i in range(n):
        i = (R-i-1)//n * n + i
        if i >= f:
            ans = max(ans, z[r%n] - z[l%n] + z[-1] * (r//n-l//n))
            #print(">=",l, r,z[r%n] - z[l%n] + z[-1] * (r//n-l//n))
        l += u
        r += u

print(ans)
0