結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー | ajiruajiru |
提出日時 | 2020-02-13 03:34:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 529 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 69,436 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-10-04 18:30:02 |
合計ジャッジ時間 | 8,311 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 256 ms
6,820 KB |
testcase_08 | AC | 1,461 ms
6,816 KB |
testcase_09 | AC | 1,451 ms
6,820 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; int main(void) { int n; cin >> n; vector<int> b(n); for (int i = 0; i < n; ++i) cin >> b[i]; int ans = 0; for (int i = 0; i < n; ++i) { if (b[i] == 0) { for (int j = 0; j < i; ++j) { if (b[j] > 1) { --b[j], ++b[i]; ans += i - j; break; } } if (b[i] == 0) { for (int j = i + 1; j < n; ++j) { if (b[j] > 0) { --b[j], ++b[i]; ans += j - i; break; } } } } } cout << ans << endl; return 0; }