結果

問題 No.1650 Moving Coins
ユーザー みここみここ
提出日時 2021-08-20 21:45:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 65,456 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-22 04:10:14
合計ジャッジ時間 12,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 257 ms
6,944 KB
testcase_04 AC 192 ms
6,940 KB
testcase_05 AC 236 ms
6,940 KB
testcase_06 AC 268 ms
6,944 KB
testcase_07 AC 267 ms
6,940 KB
testcase_08 AC 329 ms
6,940 KB
testcase_09 AC 334 ms
6,940 KB
testcase_10 AC 338 ms
6,940 KB
testcase_11 AC 343 ms
6,940 KB
testcase_12 AC 309 ms
6,940 KB
testcase_13 AC 308 ms
6,940 KB
testcase_14 AC 334 ms
6,940 KB
testcase_15 AC 301 ms
6,944 KB
testcase_16 AC 349 ms
6,940 KB
testcase_17 AC 337 ms
6,940 KB
testcase_18 AC 361 ms
6,944 KB
testcase_19 AC 394 ms
6,944 KB
testcase_20 AC 395 ms
6,944 KB
testcase_21 AC 401 ms
6,944 KB
testcase_22 AC 405 ms
6,944 KB
testcase_23 AC 394 ms
6,940 KB
testcase_24 AC 270 ms
6,944 KB
testcase_25 AC 265 ms
6,944 KB
testcase_26 AC 129 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main()
{
    int n;
    cin >> n;
    int a[200005], b[200005];
    for(int i = 0; i < n; i++) cin >> a[i];
    for(int i = 0; i < n; i++) cin >> b[i];
    int ans = 0;
    for(int i = 0; i < n; i++) ans += abs(a[i] - b[i]);
    cout << ans << endl;
    for(int i = 0; i < n; i++){
        if(a[i] > b[i]){
            for(int j = 0; j < a[i] - b[i]; j++) cout << i + 1 << " L" << endl;
            a[i] = b[i];
        }
    }
    for(int i = n - 1; i >= 0; i--){
        if(a[i] < b[i]){
            for(int j = 0; j < b[i] - a[i]; j++) cout << i + 1 << " R" << endl;
            a[i] = b[i];
        }
    }
}
0