結果

問題 No.929 よくあるボールを移動するやつ
ユーザー kk
提出日時 2020-07-19 04:28:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 202,100 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 23:51:15
合計ジャッジ時間 2,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;
  vector<int> x, y;
  REP (i, n) {
    int b;
    cin >> b;
    if (!b)
      x.push_back(i);
    else if (b > 1) {
      REP (j, b-1)
        y.push_back(i);
    }
  }

  int ret = 0;
  REP (i, x.size())
    ret += abs(x[i] - y[i]);
  cout << ret << endl;
  
  return 0;
}
0