結果

問題 No.1650 Moving Coins
ユーザー kohei2019kohei2019
提出日時 2022-06-28 23:21:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 320,636 KB
最終ジャッジ日時 2024-11-21 18:29:36
合計ジャッジ時間 10,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 167 ms
91,940 KB
testcase_04 AC 147 ms
91,064 KB
testcase_05 AC 175 ms
94,020 KB
testcase_06 AC 188 ms
89,856 KB
testcase_07 AC 176 ms
91,520 KB
testcase_08 AC 178 ms
111,252 KB
testcase_09 AC 220 ms
105,004 KB
testcase_10 AC 169 ms
111,524 KB
testcase_11 AC 232 ms
106,052 KB
testcase_12 AC 219 ms
92,760 KB
testcase_13 AC 217 ms
93,432 KB
testcase_14 AC 278 ms
105,500 KB
testcase_15 AC 249 ms
95,644 KB
testcase_16 AC 266 ms
106,740 KB
testcase_17 AC 283 ms
105,488 KB
testcase_18 AC 319 ms
105,008 KB
testcase_19 AC 646 ms
320,636 KB
testcase_20 AC 196 ms
132,616 KB
testcase_21 AC 441 ms
219,496 KB
testcase_22 AC 206 ms
111,472 KB
testcase_23 AC 211 ms
111,716 KB
testcase_24 AC 121 ms
95,616 KB
testcase_25 AC 145 ms
97,040 KB
testcase_26 AC 105 ms
108,748 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:
        while lsA[n] != k:
            moves.append((n,'R'))
            lsA[n] += 1

    else:
        while lsA[n] != k:
            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