結果

問題 No.1650 Moving Coins
ユーザー wolgnikwolgnik
提出日時 2021-08-20 21:43:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 131,616 KB
最終ジャッジ日時 2024-10-14 03:02:03
合計ジャッジ時間 10,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 192 ms
105,600 KB
testcase_09 WA -
testcase_10 AC 189 ms
111,588 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 219 ms
131,268 KB
testcase_21 WA -
testcase_22 AC 220 ms
130,640 KB
testcase_23 AC 223 ms
130,636 KB
testcase_24 AC 148 ms
98,688 KB
testcase_25 AC 149 ms
98,816 KB
testcase_26 AC 127 ms
106,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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]
  while x != y:
    if x < y:
      res.append((i + 1, "R"))
      x += 1
    else:
      res.append((i + 1, "L"))
      x -= 1

print(len(res))
for r in res: print(*r)
0