結果

問題 No.1650 Moving Coins
ユーザー ntudantuda
提出日時 2021-09-05 17:15:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 112,248 KB
最終ジャッジ日時 2024-06-01 11:46:14
合計ジャッジ時間 10,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,104 KB
testcase_01 AC 38 ms
52,536 KB
testcase_02 AC 38 ms
53,704 KB
testcase_03 AC 180 ms
100,300 KB
testcase_04 AC 138 ms
94,428 KB
testcase_05 AC 163 ms
98,316 KB
testcase_06 AC 175 ms
100,456 KB
testcase_07 AC 179 ms
100,904 KB
testcase_08 AC 248 ms
107,904 KB
testcase_09 AC 243 ms
104,464 KB
testcase_10 AC 253 ms
109,284 KB
testcase_11 AC 255 ms
109,484 KB
testcase_12 AC 233 ms
104,208 KB
testcase_13 AC 239 ms
104,672 KB
testcase_14 AC 247 ms
105,004 KB
testcase_15 AC 216 ms
102,764 KB
testcase_16 AC 265 ms
111,284 KB
testcase_17 AC 260 ms
110,148 KB
testcase_18 AC 284 ms
112,248 KB
testcase_19 AC 254 ms
111,480 KB
testcase_20 AC 264 ms
111,476 KB
testcase_21 AC 268 ms
111,500 KB
testcase_22 AC 264 ms
112,216 KB
testcase_23 AC 270 ms
111,500 KB
testcase_24 AC 160 ms
101,448 KB
testcase_25 AC 162 ms
100,892 KB
testcase_26 AC 119 ms
108,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ans = []
for i in range(N):
    if B[i] < A[i]:
        dif = A[i] - B[i] 
        ans += [[i+1,"L"] for _ in range(dif)]
for i in reversed(range(N)):
    if B[i] > A[i]:
        dif = B[i] - A[i] 
        ans += [[i+1,"R"] for _ in range(dif)]
print(len(ans))
for a in ans:
    print(*a)
0