結果

問題 No.1650 Moving Coins
ユーザー pluto77pluto77
提出日時 2022-02-16 09:58:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 128,632 KB
最終ジャッジ日時 2024-06-29 07:12:35
合計ジャッジ時間 8,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 143 ms
101,032 KB
testcase_04 AC 119 ms
98,884 KB
testcase_05 AC 133 ms
101,120 KB
testcase_06 AC 145 ms
100,884 KB
testcase_07 AC 142 ms
101,108 KB
testcase_08 AC 192 ms
117,148 KB
testcase_09 AC 183 ms
104,884 KB
testcase_10 AC 195 ms
114,484 KB
testcase_11 AC 191 ms
110,588 KB
testcase_12 AC 174 ms
109,804 KB
testcase_13 AC 173 ms
109,268 KB
testcase_14 AC 184 ms
104,556 KB
testcase_15 AC 170 ms
109,824 KB
testcase_16 AC 193 ms
113,384 KB
testcase_17 AC 192 ms
112,964 KB
testcase_18 AC 201 ms
116,524 KB
testcase_19 AC 218 ms
128,632 KB
testcase_20 AC 222 ms
128,520 KB
testcase_21 AC 213 ms
126,400 KB
testcase_22 AC 217 ms
126,028 KB
testcase_23 AC 219 ms
125,204 KB
testcase_24 AC 143 ms
101,504 KB
testcase_25 AC 147 ms
101,304 KB
testcase_26 AC 115 ms
107,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1650
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
res=[]
for i in range(n):
 x=a[i]
 y=b[i]
 if x>y:
  for j in range(x-y):
   res.append([i+1,'L'])
for i in range(n-1,-1,-1):
 x=a[i]
 y=b[i]
 if x<y:
  for j in range(y-x):
   res.append([i+1,'R'])
print (len(res))
for x,y in res:
 print(x,y)
0