結果

問題 No.1650 Moving Coins
ユーザー chocoruskchocorusk
提出日時 2021-08-16 07:33:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 02:21:56
合計ジャッジ時間 11,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 248 ms
5,248 KB
testcase_04 AC 189 ms
5,248 KB
testcase_05 AC 220 ms
5,248 KB
testcase_06 AC 253 ms
5,248 KB
testcase_07 AC 251 ms
5,248 KB
testcase_08 AC 310 ms
5,248 KB
testcase_09 AC 318 ms
5,248 KB
testcase_10 AC 317 ms
5,248 KB
testcase_11 AC 328 ms
5,248 KB
testcase_12 AC 304 ms
5,248 KB
testcase_13 AC 298 ms
5,248 KB
testcase_14 AC 314 ms
5,248 KB
testcase_15 AC 281 ms
5,248 KB
testcase_16 AC 327 ms
5,248 KB
testcase_17 AC 321 ms
5,248 KB
testcase_18 AC 344 ms
5,248 KB
testcase_19 AC 365 ms
5,248 KB
testcase_20 AC 380 ms
5,248 KB
testcase_21 AC 377 ms
5,248 KB
testcase_22 AC 385 ms
5,248 KB
testcase_23 AC 378 ms
5,248 KB
testcase_24 AC 252 ms
5,248 KB
testcase_25 AC 249 ms
5,248 KB
testcase_26 AC 121 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll=long long;
const int MAXA=1000000;
const int MAXN=200000;
const int MAXM=200000;
int a[MAXN], b[MAXN];
int main()
{
	int n;
	cin>>n;
	for(int i=0; i<n; i++) cin>>a[i];
	for(int i=0; i<n; i++) cin>>b[i];
	int m=0;
	for(int i=0; i<n; i++) m+=abs(a[i]-b[i]);
	cout<<m<<endl;
	for(int i=0; i<n; i++){
		for(int j=0; j<a[i]-b[i]; j++){
		    cout<<i+1<<"L"<<endl;
		}
	}
	for(int i=n-1; i>=0; i--){
		for(int j=0; j<b[i]-a[i]; j++){
		    cout<<i+1<<"R"<<endl;
		}
	}
    return 0;
}
0