結果

問題 No.1650 Moving Coins
ユーザー timitimi
提出日時 2021-09-14 09:57:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 126,960 KB
最終ジャッジ日時 2024-06-26 22:32:18
合計ジャッジ時間 9,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 141 ms
77,452 KB
testcase_04 AC 127 ms
77,568 KB
testcase_05 AC 131 ms
77,788 KB
testcase_06 AC 144 ms
77,444 KB
testcase_07 AC 140 ms
77,564 KB
testcase_08 AC 173 ms
103,524 KB
testcase_09 AC 164 ms
103,680 KB
testcase_10 AC 175 ms
103,424 KB
testcase_11 AC 196 ms
103,552 KB
testcase_12 AC 180 ms
91,612 KB
testcase_13 AC 174 ms
91,528 KB
testcase_14 AC 195 ms
103,724 KB
testcase_15 AC 159 ms
89,820 KB
testcase_16 AC 210 ms
104,960 KB
testcase_17 AC 208 ms
104,832 KB
testcase_18 AC 209 ms
106,628 KB
testcase_19 AC 202 ms
126,960 KB
testcase_20 AC 217 ms
125,748 KB
testcase_21 AC 234 ms
124,856 KB
testcase_22 AC 231 ms
123,840 KB
testcase_23 AC 230 ms
123,888 KB
testcase_24 AC 110 ms
76,672 KB
testcase_25 AC 126 ms
77,568 KB
testcase_26 AC 118 ms
108,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
L,R=[],[]
e=0
for i in range(N):
  e+=abs(A[i]-B[i])
  if A[i]>B[i]:
    L.append(i)
  elif A[i]<B[i]:
    R.append(i)
ans=[]
L=sorted(L)
R=sorted(R)[::-1]
print(e)
for l in L:
  d=abs(A[l]-B[l])
  for i in range(d):
    print(l+1,'L')
for r in R:
  d=abs(A[r]-B[r])
  for i in range(d):
    print(r+1,'R')
0