結果

問題 No.1650 Moving Coins
ユーザー ysys
提出日時 2021-12-25 13:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 129,828 KB
最終ジャッジ日時 2024-09-21 15:57:50
合計ジャッジ時間 8,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 81 ms
76,160 KB
testcase_04 AC 78 ms
76,032 KB
testcase_05 AC 83 ms
76,160 KB
testcase_06 AC 89 ms
76,340 KB
testcase_07 AC 86 ms
75,904 KB
testcase_08 AC 142 ms
103,168 KB
testcase_09 AC 130 ms
103,424 KB
testcase_10 AC 139 ms
103,808 KB
testcase_11 AC 159 ms
103,552 KB
testcase_12 AC 127 ms
91,776 KB
testcase_13 AC 130 ms
91,776 KB
testcase_14 AC 143 ms
103,552 KB
testcase_15 AC 116 ms
90,112 KB
testcase_16 AC 171 ms
105,088 KB
testcase_17 AC 164 ms
104,872 KB
testcase_18 AC 182 ms
111,344 KB
testcase_19 AC 176 ms
129,828 KB
testcase_20 AC 175 ms
128,700 KB
testcase_21 AC 185 ms
128,008 KB
testcase_22 AC 186 ms
126,784 KB
testcase_23 AC 188 ms
127,292 KB
testcase_24 AC 67 ms
75,648 KB
testcase_25 AC 79 ms
76,160 KB
testcase_26 AC 144 ms
123,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
desc = []
asc = []
ans = 0
for i in range(N):
  if A[i] <= B[i]:
    asc.append((i + 1, abs(A[i] - B[i])))
  else:
    desc.append((i + 1, abs(A[i] - B[i])))
  ans += abs(A[i] - B[i])

asc = asc[::-1]
print(ans)
for index, cnt in asc:
  for j in range(cnt):
    print(str(index) + ' R')

for index, cnt in desc:
  for j in range(cnt):
    print(str(index) + ' L')
0