結果

問題 No.1650 Moving Coins
ユーザー shinichishinichi
提出日時 2021-08-21 01:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 263,588 KB
最終ジャッジ日時 2024-10-14 10:32:49
合計ジャッジ時間 10,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 147 ms
98,432 KB
testcase_04 AC 132 ms
92,160 KB
testcase_05 AC 142 ms
96,384 KB
testcase_06 AC 159 ms
98,816 KB
testcase_07 AC 155 ms
98,560 KB
testcase_08 AC 204 ms
103,424 KB
testcase_09 AC 236 ms
103,424 KB
testcase_10 AC 210 ms
103,424 KB
testcase_11 AC 252 ms
103,772 KB
testcase_12 AC 194 ms
93,544 KB
testcase_13 AC 212 ms
94,984 KB
testcase_14 AC 246 ms
103,120 KB
testcase_15 AC 212 ms
92,872 KB
testcase_16 AC 268 ms
104,832 KB
testcase_17 AC 262 ms
103,800 KB
testcase_18 AC 297 ms
103,384 KB
testcase_19 AC 772 ms
263,588 KB
testcase_20 AC 253 ms
111,288 KB
testcase_21 AC 518 ms
183,096 KB
testcase_22 AC 253 ms
109,884 KB
testcase_23 AC 249 ms
110,208 KB
testcase_24 AC 152 ms
99,076 KB
testcase_25 AC 156 ms
98,984 KB
testcase_26 AC 126 ms
108,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

result = []


sys.setrecursionlimit(1000000)
def dfs(i):
    while A[i] != B[i]:
        if A[i]-B[i] > 0:
            if i == 0 or A[i-1] != A[i] - 1:
                A[i] -= 1
                result.append((i+1, "L"))
            else:
                dfs(i-1)
        else:
            if i == N-1 or A[i+1] != A[i] + 1:
                A[i] += 1
                result.append((i+1, "R"))
            else:
                dfs(i+1)

for i in range(N):
    dfs(i)
print(len(result))
for res in result:
    print(*res)
0