Skip to content

Commit 75e2e73

Browse files
committed
Auto-sync: 2026-02-25 15:30:56
1 parent 0f9ba77 commit 75e2e73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2000D.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void MASTER(){
2222
int l = 0;
2323
int r = n-1;
2424
ll sum = 0;
25-
vector<int> pref(n + 1, 0);
25+
vector<ll> pref(n + 1, 0);
2626
for (int i = 0; i < n; i++)
2727
pref[i + 1] = pref[i] + a[i];
2828

0 commit comments

Comments
 (0)