結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 171 ms
99,940 KB
testcase_04 AC 138 ms
94,080 KB
testcase_05 AC 161 ms
97,756 KB
testcase_06 AC 177 ms
99,996 KB
testcase_07 AC 180 ms
100,888 KB
testcase_08 AC 246 ms
107,716 KB
testcase_09 AC 241 ms
104,080 KB
testcase_10 AC 246 ms
108,972 KB
testcase_11 AC 254 ms
109,312 KB
testcase_12 AC 230 ms
104,068 KB
testcase_13 AC 231 ms
104,160 KB
testcase_14 AC 245 ms
104,728 KB
testcase_15 AC 219 ms
102,524 KB
testcase_16 AC 268 ms
110,944 KB
testcase_17 AC 256 ms
110,016 KB
testcase_18 AC 269 ms
111,864 KB
testcase_19 AC 248 ms
111,024 KB
testcase_20 AC 257 ms
111,036 KB
testcase_21 AC 271 ms
111,424 KB
testcase_22 AC 259 ms
112,448 KB
testcase_23 AC 261 ms
111,172 KB
testcase_24 AC 161 ms
100,992 KB
testcase_25 AC 164 ms
100,564 KB
testcase_26 AC 124 ms
108,228 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