結果

問題 No.1650 Moving Coins
ユーザー wolgnikwolgnik
提出日時 2021-08-20 21:49:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 514 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 268,472 KB
最終ジャッジ日時 2024-10-14 03:19:02
合計ジャッジ時間 10,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 156 ms
93,568 KB
testcase_04 AC 147 ms
87,256 KB
testcase_05 AC 153 ms
91,904 KB
testcase_06 AC 171 ms
91,552 KB
testcase_07 AC 165 ms
91,136 KB
testcase_08 AC 240 ms
145,512 KB
testcase_09 AC 342 ms
247,500 KB
testcase_10 AC 238 ms
144,520 KB
testcase_11 AC 326 ms
196,500 KB
testcase_12 AC 326 ms
244,760 KB
testcase_13 AC 315 ms
223,984 KB
testcase_14 AC 313 ms
218,824 KB
testcase_15 AC 216 ms
126,376 KB
testcase_16 AC 257 ms
137,944 KB
testcase_17 AC 255 ms
136,320 KB
testcase_18 AC 267 ms
136,972 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

res = []
s = {i for i in range(N)}
while len(s):
  t = set(s)
  for i in t:
    if a[i] < b[i]:
      if i + 1 < N and a[i + 1] == a[i] + 1: continue
      res.append((i + 1, "R"))
      a[i] += 1
    elif a[i] > b[i]:
      if i and a[i - 1] == a[i] + 1: continue
      res.append((i + 1, "L"))
      a[i] -= 1
    if a[i] == b[i]: s.discard(i)

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