結果

問題 No.1650 Moving Coins
ユーザー nasutarou1341nasutarou1341
提出日時 2021-08-20 21:48:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 128,700 KB
最終ジャッジ日時 2024-10-14 03:14:54
合計ジャッジ時間 9,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 173 ms
101,120 KB
testcase_04 AC 150 ms
98,944 KB
testcase_05 AC 169 ms
101,376 KB
testcase_06 AC 175 ms
101,008 KB
testcase_07 AC 172 ms
101,120 KB
testcase_08 AC 225 ms
117,204 KB
testcase_09 AC 214 ms
105,140 KB
testcase_10 AC 223 ms
114,612 KB
testcase_11 AC 223 ms
110,204 KB
testcase_12 AC 208 ms
109,796 KB
testcase_13 AC 208 ms
109,400 KB
testcase_14 AC 219 ms
104,420 KB
testcase_15 AC 201 ms
109,952 KB
testcase_16 AC 227 ms
113,884 KB
testcase_17 AC 226 ms
112,796 KB
testcase_18 AC 234 ms
116,400 KB
testcase_19 AC 248 ms
128,688 KB
testcase_20 AC 251 ms
128,700 KB
testcase_21 AC 249 ms
126,396 KB
testcase_22 AC 249 ms
125,896 KB
testcase_23 AC 246 ms
124,996 KB
testcase_24 AC 170 ms
101,504 KB
testcase_25 AC 171 ms
101,376 KB
testcase_26 AC 132 ms
108,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ans = []
for i in range(N):
  a = A[i]
  b = B[i]
  if b < a:
    for n in range(a - b):
      ans.append([i + 1, "L"])
for i in range(N - 1, -1, -1):
  a = A[i]
  b = B[i]
  if a < b:
    for n in range(b - a):
      ans.append([i + 1, "R"])

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