結果

問題 No.929 よくあるボールを移動するやつ
ユーザー kazumakazuma
提出日時 2019-11-22 21:43:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 194,048 KB
最終ジャッジ日時 2025-01-08 04:47:41
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main()
{
	ios::sync_with_stdio(false), cin.tie(0);
	int N;
	cin >> N;
	vector<int> B(N);
	for (int i = 0; i < N; i++) {
		cin >> B[i];
	}
	ll res = 0, pre = 0;
	for (int i = 0; i < N; i++) {
		res += abs(pre);
		pre += B[i] - 1;
	}
	cout << res << endl;
	return 0;
}
0