結果

問題 No.1650 Moving Coins
ユーザー kohei2019kohei2019
提出日時 2022-06-28 23:16:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 270,272 KB
最終ジャッジ日時 2024-11-21 18:18:53
合計ジャッジ時間 10,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 177 ms
111,488 KB
testcase_09 WA -
testcase_10 AC 182 ms
111,488 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 AC 555 ms
270,272 KB
testcase_20 AC 196 ms
132,732 KB
testcase_21 AC 373 ms
188,788 KB
testcase_22 AC 193 ms
132,084 KB
testcase_23 AC 204 ms
132,188 KB
testcase_24 WA -
testcase_25 AC 141 ms
97,152 KB
testcase_26 AC 106 ms
108,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
N = int(input())
lsA = list(map(int,input().split()))
lsB = list(map(int,input().split()))

moves = []
def moveto(n,k):
    if lsA[n] == k:
        return
    if n == N-1:
        moves.append((n,'R'))
        lsA[n] += 1

    else:
        if lsA[n]+1 == lsA[n+1]:
            moveto(n+1,lsA[n+1]+1)
            moves.append((n,'R'))
            lsA[n] += 1
        else:
            moves.append((n,'R'))
            lsA[n] += 1


for i in range(N):
    move = lsB[i]-lsA[i]
    now = lsA[i]
    if move <= 0:
        while move != 0:
            moves.append((i,'L'))
            move += 1
    else:
        stac = []
        moveto(i,lsB[i])

print(len(moves))
for a,b in moves:
    print(a+1,b)
0