結果

問題 No.2488 Mod Sum Maximization
ユーザー shotoyooshotoyoo
提出日時 2023-10-01 10:43:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 855 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 116,112 KB
最終ジャッジ日時 2024-07-26 13:26:22
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,368 KB
testcase_01 AC 37 ms
53,760 KB
testcase_02 AC 36 ms
54,144 KB
testcase_03 WA -
testcase_04 AC 119 ms
115,824 KB
testcase_05 WA -
testcase_06 AC 114 ms
109,296 KB
testcase_07 WA -
testcase_08 AC 113 ms
109,196 KB
testcase_09 AC 94 ms
110,824 KB
testcase_10 WA -
testcase_11 AC 44 ms
63,360 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 83 ms
101,504 KB
testcase_16 AC 45 ms
64,256 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 108 ms
105,472 KB
testcase_20 AC 115 ms
104,536 KB
testcase_21 AC 112 ms
104,060 KB
testcase_22 AC 119 ms
109,052 KB
testcase_23 AC 121 ms
109,808 KB
testcase_24 WA -
testcase_25 AC 46 ms
63,360 KB
testcase_26 WA -
testcase_27 AC 76 ms
96,128 KB
testcase_28 AC 78 ms
96,384 KB
testcase_29 AC 76 ms
96,000 KB
testcase_30 AC 63 ms
83,456 KB
testcase_31 AC 46 ms
66,688 KB
testcase_32 AC 108 ms
105,600 KB
testcase_33 AC 51 ms
62,336 KB
testcase_34 AC 124 ms
108,992 KB
testcase_35 AC 69 ms
81,536 KB
testcase_36 AC 42 ms
53,760 KB
testcase_37 AC 40 ms
54,144 KB
testcase_38 AC 40 ms
54,400 KB
testcase_39 AC 40 ms
54,144 KB
testcase_40 AC 41 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
a = list(map(int, input().split()))
res = -a[-1] + a[-1]%a[0]
cum = -INF
for i in range(1,n-1):
    cum = max(cum, -a[-1] + a[-1]%a[i])
    val = -a[i] + a[i]%a[0]
    res = max(res, val+cum)
print(sum(a)+res)
0