結果

問題 No.1650 Moving Coins
ユーザー NoneNone
提出日時 2021-09-30 04:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 132,856 KB
最終ジャッジ日時 2024-07-17 07:36:05
合計ジャッジ時間 9,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,216 KB
testcase_01 AC 39 ms
52,196 KB
testcase_02 AC 38 ms
52,264 KB
testcase_03 AC 153 ms
98,896 KB
testcase_04 AC 140 ms
91,760 KB
testcase_05 AC 149 ms
96,340 KB
testcase_06 AC 168 ms
98,704 KB
testcase_07 AC 156 ms
99,076 KB
testcase_08 AC 186 ms
111,152 KB
testcase_09 AC 180 ms
103,448 KB
testcase_10 AC 188 ms
111,632 KB
testcase_11 AC 212 ms
111,296 KB
testcase_12 AC 187 ms
100,140 KB
testcase_13 AC 189 ms
99,316 KB
testcase_14 AC 203 ms
103,636 KB
testcase_15 AC 183 ms
97,524 KB
testcase_16 AC 224 ms
114,332 KB
testcase_17 AC 218 ms
114,380 KB
testcase_18 AC 233 ms
120,556 KB
testcase_19 AC 217 ms
132,720 KB
testcase_20 AC 223 ms
132,856 KB
testcase_21 AC 241 ms
132,472 KB
testcase_22 AC 243 ms
131,848 KB
testcase_23 AC 240 ms
131,596 KB
testcase_24 AC 132 ms
98,764 KB
testcase_25 AC 160 ms
99,276 KB
testcase_26 AC 121 ms
108,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
res=[]
for i in range(N):
    a,b=A[i],B[i]
    if a>b:
        for _ in range(a-b):
            res.append((i+1,"L"))
        A[i]=B[i]
for i in range(N)[::-1]:
    a,b=A[i],B[i]
    if a<b:
        for _ in range(b-a):
            res.append((i+1,"R"))
        A[i]=B[i]
print(len(res))
for k,c in res:
    print(k,c)
0