結果

問題 No.1650 Moving Coins
ユーザー hayatroidhayatroid
提出日時 2021-08-20 22:37:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 578 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-10-14 04:40:23
合計ジャッジ時間 5,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 43 ms
51,584 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 123 ms
97,536 KB
testcase_04 AC 111 ms
94,336 KB
testcase_05 AC 119 ms
95,488 KB
testcase_06 AC 126 ms
96,004 KB
testcase_07 AC 125 ms
97,024 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

d = list(range(n))

ans = 0
rec = []
while d:
  for i in d:
    if a[i] == b[i]:
      d.pop(d.index(i))
      continue
    if d.index(i) != 0:
      if a[d[d.index(i) - 1]] >= b[d[d.index(i)]]:
        continue
    if d.index(i) != len(d) - 1:
      if a[d[d.index(i) + 1]] <= b[d[d.index(i)]]:
        continue
    for j in range(abs(a[i] - b[i])):
      ans += 1
      rec.append(str(i + 1) + ' ' + ('L' if a[i] > b[i] else 'R'))
    d.pop(d.index(i))

print(ans)
print(*rec, sep='\n')
0