結果

問題 No.1650 Moving Coins
ユーザー siro53siro53
提出日時 2021-08-21 03:08:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 123,536 KB
最終ジャッジ日時 2024-10-14 11:47:43
合計ジャッジ時間 8,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 37 ms
52,136 KB
testcase_03 AC 129 ms
77,204 KB
testcase_04 AC 121 ms
76,936 KB
testcase_05 AC 126 ms
77,096 KB
testcase_06 AC 144 ms
77,292 KB
testcase_07 AC 145 ms
77,308 KB
testcase_08 AC 202 ms
103,348 KB
testcase_09 AC 176 ms
103,468 KB
testcase_10 AC 184 ms
103,520 KB
testcase_11 AC 220 ms
103,564 KB
testcase_12 AC 188 ms
94,748 KB
testcase_13 AC 192 ms
94,668 KB
testcase_14 AC 199 ms
102,928 KB
testcase_15 AC 177 ms
90,200 KB
testcase_16 AC 224 ms
105,732 KB
testcase_17 AC 218 ms
104,640 KB
testcase_18 AC 218 ms
108,556 KB
testcase_19 AC 205 ms
123,004 KB
testcase_20 AC 209 ms
123,536 KB
testcase_21 AC 227 ms
123,388 KB
testcase_22 AC 214 ms
122,648 KB
testcase_23 AC 218 ms
122,632 KB
testcase_24 AC 114 ms
77,024 KB
testcase_25 AC 117 ms
77,200 KB
testcase_26 AC 132 ms
121,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
M = sum([abs(a - b) for (a, b) in zip(A, B)])
print(M)
for i in range(N)[::-1]:
    if A[i] <= B[i]:
        for _ in range(B[i] - A[i]):
            print(i+1, 'R')
for i in range(N):
    if A[i] > B[i]:
        for _ in range(A[i] - B[i]):
            print(i+1, 'L')
0