結果

問題 No.1650 Moving Coins
ユーザー 👑 rin204rin204
提出日時 2021-08-29 15:27:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 129,444 KB
最終ジャッジ日時 2024-05-01 22:35:09
合計ジャッジ時間 9,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 116 ms
76,928 KB
testcase_04 AC 106 ms
76,928 KB
testcase_05 AC 115 ms
76,928 KB
testcase_06 AC 119 ms
77,312 KB
testcase_07 AC 125 ms
77,312 KB
testcase_08 AC 175 ms
104,152 KB
testcase_09 AC 161 ms
103,400 KB
testcase_10 AC 172 ms
105,272 KB
testcase_11 AC 191 ms
104,320 KB
testcase_12 AC 169 ms
92,544 KB
testcase_13 AC 167 ms
92,288 KB
testcase_14 AC 185 ms
103,168 KB
testcase_15 AC 157 ms
90,176 KB
testcase_16 AC 203 ms
108,760 KB
testcase_17 AC 199 ms
109,588 KB
testcase_18 AC 217 ms
116,868 KB
testcase_19 AC 210 ms
129,444 KB
testcase_20 AC 210 ms
128,180 KB
testcase_21 AC 245 ms
127,364 KB
testcase_22 AC 240 ms
124,100 KB
testcase_23 AC 235 ms
123,920 KB
testcase_24 AC 102 ms
76,544 KB
testcase_25 AC 103 ms
77,184 KB
testcase_26 AC 119 ms
108,100 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