結果

問題 No.1650 Moving Coins
ユーザー lloyzlloyz
提出日時 2021-12-20 22:49:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,932 KB
最終ジャッジ日時 2024-09-15 15:22:25
合計ジャッジ時間 9,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,248 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 172 ms
87,292 KB
testcase_04 AC 172 ms
85,376 KB
testcase_05 AC 185 ms
86,784 KB
testcase_06 AC 192 ms
87,552 KB
testcase_07 AC 188 ms
88,320 KB
testcase_08 AC 207 ms
101,504 KB
testcase_09 AC 204 ms
100,352 KB
testcase_10 AC 213 ms
101,828 KB
testcase_11 AC 238 ms
101,100 KB
testcase_12 AC 215 ms
92,032 KB
testcase_13 AC 211 ms
92,416 KB
testcase_14 AC 235 ms
100,480 KB
testcase_15 AC 205 ms
89,216 KB
testcase_16 AC 241 ms
103,416 KB
testcase_17 AC 247 ms
103,252 KB
testcase_18 AC 255 ms
108,796 KB
testcase_19 AC 233 ms
119,932 KB
testcase_20 AC 234 ms
119,056 KB
testcase_21 AC 253 ms
117,908 KB
testcase_22 AC 261 ms
116,628 KB
testcase_23 AC 261 ms
116,124 KB
testcase_24 AC 146 ms
87,168 KB
testcase_25 AC 173 ms
87,808 KB
testcase_26 AC 130 ms
108,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ANS = deque()
for i in range(n):
    if A[i] < B[i]:
        cnt = B[i] - A[i]
        for j in range(cnt):
            ANS.appendleft((i + 1, 'R'))
    elif A[i] > B[i]:
        cnt = A[i] - B[i]
        for j in range(cnt):
            ANS.append((i + 1, 'L'))

print(len(ANS))
for ind, direction in ANS:
    print(ind, direction)
0