結果

問題 No.1650 Moving Coins
ユーザー 👑 rin204rin204
提出日時 2021-08-29 15:27:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 129,312 KB
最終ジャッジ日時 2024-11-22 05:53:19
合計ジャッジ時間 10,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 139 ms
77,312 KB
testcase_04 AC 127 ms
76,928 KB
testcase_05 AC 138 ms
77,056 KB
testcase_06 AC 142 ms
77,312 KB
testcase_07 AC 144 ms
77,440 KB
testcase_08 AC 204 ms
104,024 KB
testcase_09 AC 197 ms
102,912 KB
testcase_10 AC 203 ms
105,276 KB
testcase_11 AC 230 ms
104,580 KB
testcase_12 AC 202 ms
92,288 KB
testcase_13 AC 201 ms
92,544 KB
testcase_14 AC 214 ms
103,552 KB
testcase_15 AC 192 ms
90,240 KB
testcase_16 AC 238 ms
108,760 KB
testcase_17 AC 237 ms
109,448 KB
testcase_18 AC 265 ms
117,156 KB
testcase_19 AC 250 ms
129,312 KB
testcase_20 AC 246 ms
128,696 KB
testcase_21 AC 269 ms
126,780 KB
testcase_22 AC 270 ms
123,972 KB
testcase_23 AC 272 ms
124,096 KB
testcase_24 AC 122 ms
76,800 KB
testcase_25 AC 127 ms
77,184 KB
testcase_26 AC 132 ms
108,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
alst = list(map(int, input().split()))
blst = list(map(int, input().split()))
R = []
L = []
tot = 0
for i, (a, b) in enumerate(zip(alst, blst), 1):
    if a < b:
        R.append((a, b, i))
    elif a > b:
        L.append((a, b, i))
    tot += abs(a - b)
print(tot)
        
for a, b, i in R[::-1]:
    for _ in range(b - a):
        print(i, "R")

for a, b, i in L:
    for _ in range(a - b):
        print(i, "L")
0