結果

問題 No.2488 Mod Sum Maximization
ユーザー なえしらなえしら
提出日時 2023-09-29 22:34:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 116,608 KB
最終ジャッジ日時 2024-07-22 16:34:46
合計ジャッジ時間 5,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 WA -
testcase_04 AC 136 ms
111,956 KB
testcase_05 WA -
testcase_06 AC 133 ms
108,944 KB
testcase_07 WA -
testcase_08 AC 135 ms
109,288 KB
testcase_09 AC 105 ms
110,464 KB
testcase_10 WA -
testcase_11 AC 47 ms
61,312 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 91 ms
99,840 KB
testcase_16 AC 49 ms
61,568 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 117 ms
116,608 KB
testcase_20 AC 124 ms
105,728 KB
testcase_21 AC 117 ms
116,608 KB
testcase_22 AC 134 ms
108,944 KB
testcase_23 AC 134 ms
109,600 KB
testcase_24 WA -
testcase_25 AC 49 ms
60,928 KB
testcase_26 WA -
testcase_27 AC 92 ms
94,592 KB
testcase_28 AC 90 ms
95,104 KB
testcase_29 AC 86 ms
94,592 KB
testcase_30 AC 72 ms
81,664 KB
testcase_31 AC 51 ms
64,256 KB
testcase_32 AC 117 ms
116,480 KB
testcase_33 AC 46 ms
59,776 KB
testcase_34 AC 133 ms
108,812 KB
testcase_35 AC 69 ms
79,744 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 38 ms
51,584 KB
testcase_38 AC 39 ms
51,840 KB
testcase_39 AC 38 ms
51,584 KB
testcase_40 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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