結果

問題 No.2488 Mod Sum Maximization
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-09-29 21:38:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 115,144 KB
最終ジャッジ日時 2024-07-22 15:39:52
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,492 KB
testcase_01 AC 33 ms
52,356 KB
testcase_02 AC 34 ms
53,288 KB
testcase_03 WA -
testcase_04 AC 105 ms
110,308 KB
testcase_05 WA -
testcase_06 AC 109 ms
106,888 KB
testcase_07 WA -
testcase_08 AC 107 ms
106,952 KB
testcase_09 AC 83 ms
108,448 KB
testcase_10 WA -
testcase_11 AC 38 ms
62,452 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 72 ms
99,184 KB
testcase_16 AC 41 ms
62,460 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 94 ms
115,020 KB
testcase_20 AC 100 ms
105,720 KB
testcase_21 AC 92 ms
115,144 KB
testcase_22 AC 104 ms
106,768 KB
testcase_23 AC 106 ms
107,156 KB
testcase_24 WA -
testcase_25 AC 39 ms
60,964 KB
testcase_26 WA -
testcase_27 AC 73 ms
94,156 KB
testcase_28 AC 69 ms
94,256 KB
testcase_29 AC 68 ms
94,328 KB
testcase_30 AC 60 ms
82,304 KB
testcase_31 AC 46 ms
64,760 KB
testcase_32 AC 92 ms
114,856 KB
testcase_33 AC 41 ms
60,768 KB
testcase_34 AC 111 ms
106,576 KB
testcase_35 AC 56 ms
79,556 KB
testcase_36 AC 33 ms
52,392 KB
testcase_37 AC 31 ms
52,300 KB
testcase_38 AC 31 ms
52,212 KB
testcase_39 AC 31 ms
52,672 KB
testcase_40 AC 36 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
add=0
for i in A:
    add+=i
add-=A[-1]
ans=add+(A[-1]%A[0])
for i in range(1,N-1):
    ans=max(ans,add-A[i]+(A[-1]%A[i])+(A[i]%A[0]))
print(ans)
0