結果

問題 No.1650 Moving Coins
ユーザー O2MTO2MT
提出日時 2021-08-21 01:51:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 151,376 KB
最終ジャッジ日時 2024-10-14 10:36:17
合計ジャッジ時間 9,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 158 ms
98,580 KB
testcase_04 AC 140 ms
92,288 KB
testcase_05 AC 149 ms
96,500 KB
testcase_06 AC 158 ms
98,888 KB
testcase_07 AC 158 ms
98,816 KB
testcase_08 AC 228 ms
117,820 KB
testcase_09 AC 241 ms
126,976 KB
testcase_10 AC 223 ms
118,340 KB
testcase_11 AC 248 ms
124,988 KB
testcase_12 AC 208 ms
104,840 KB
testcase_13 AC 204 ms
105,144 KB
testcase_14 AC 244 ms
120,364 KB
testcase_15 AC 202 ms
109,488 KB
testcase_16 AC 257 ms
126,684 KB
testcase_17 AC 257 ms
124,996 KB
testcase_18 AC 265 ms
128,660 KB
testcase_19 AC 308 ms
151,376 KB
testcase_20 AC 261 ms
135,628 KB
testcase_21 AC 289 ms
140,632 KB
testcase_22 AC 288 ms
138,308 KB
testcase_23 AC 291 ms
138,504 KB
testcase_24 AC 148 ms
95,776 KB
testcase_25 AC 155 ms
97,664 KB
testcase_26 AC 158 ms
125,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
A.sort()
B.sort()
l = []

for i in range(N):
  l.append((A[i],B[i],i+1))

ans_list = []
que = deque([])

for i in range(N):
  a,b,n = l[i]
  if a < b:
    que.appendleft((a,b,n))
  else:
    for _ in range(abs(a-b)):
      ans_list.append((n,'L'))

for a,b,n in que:
  for _ in range(abs(a-b)):
      ans_list.append((n,'R'))

print(len(ans_list))
for a,b in ans_list:
  print(a,b)
0