結果

問題 No.1650 Moving Coins
ユーザー tassei903tassei903
提出日時 2021-08-20 21:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,776 KB
最終ジャッジ日時 2024-10-14 03:22:57
合計ジャッジ時間 8,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 144 ms
98,816 KB
testcase_04 AC 124 ms
92,288 KB
testcase_05 AC 141 ms
96,128 KB
testcase_06 AC 150 ms
98,688 KB
testcase_07 AC 150 ms
98,816 KB
testcase_08 AC 183 ms
111,488 KB
testcase_09 AC 179 ms
105,088 KB
testcase_10 AC 191 ms
111,616 KB
testcase_11 AC 197 ms
112,128 KB
testcase_12 AC 175 ms
100,480 KB
testcase_13 AC 176 ms
100,224 KB
testcase_14 AC 188 ms
105,600 KB
testcase_15 AC 170 ms
97,792 KB
testcase_16 AC 197 ms
115,968 KB
testcase_17 AC 201 ms
116,224 KB
testcase_18 AC 206 ms
120,704 KB
testcase_19 AC 223 ms
132,600 KB
testcase_20 AC 215 ms
132,776 KB
testcase_21 AC 223 ms
132,768 KB
testcase_22 AC 219 ms
131,992 KB
testcase_23 AC 218 ms
132,120 KB
testcase_24 AC 145 ms
98,688 KB
testcase_25 AC 151 ms
98,944 KB
testcase_26 AC 123 ms
108,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
inf = 10**16
#######################################################################


n = ni()
a = na()
b = na()
ans = []
for i in range(n):
    if b[i]-a[i]<0:
        for j in range(a[i]-b[i]):
            ans.append((i+1,"L"))


for i in range(n-1,-1,-1):
    if b[i]-a[i]>0:
        for j in range(b[i]-a[i]):
            ans.append((i+1,"R"))

print(len(ans))
for i ,j in ans:
    print(i,j)
0