結果

問題 No.1650 Moving Coins
ユーザー rlangevinrlangevin
提出日時 2023-01-15 11:26:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,840 KB
最終ジャッジ日時 2024-06-08 14:55:56
合計ジャッジ時間 14,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 319 ms
24,320 KB
testcase_04 AC 264 ms
21,248 KB
testcase_05 AC 308 ms
23,424 KB
testcase_06 AC 326 ms
24,832 KB
testcase_07 AC 336 ms
24,832 KB
testcase_08 AC 422 ms
37,572 KB
testcase_09 AC 468 ms
37,052 KB
testcase_10 AC 435 ms
37,776 KB
testcase_11 AC 468 ms
38,232 KB
testcase_12 AC 412 ms
32,736 KB
testcase_13 AC 410 ms
32,688 KB
testcase_14 AC 453 ms
37,016 KB
testcase_15 AC 393 ms
30,832 KB
testcase_16 AC 470 ms
38,240 KB
testcase_17 AC 450 ms
37,848 KB
testcase_18 AC 495 ms
41,292 KB
testcase_19 AC 606 ms
55,840 KB
testcase_20 AC 524 ms
48,252 KB
testcase_21 AC 574 ms
48,224 KB
testcase_22 AC 541 ms
48,232 KB
testcase_23 AC 538 ms
48,124 KB
testcase_24 AC 339 ms
25,088 KB
testcase_25 AC 329 ms
24,960 KB
testcase_26 AC 188 ms
38,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

def dfs(i):
    while A[i] != B[i]:
        if A[i] > B[i]:
            ans.append((i, "L"))
            A[i] -= 1
        else:
            if A[i + 1] == A[i] + 1:
                dfs(i + 1)
            else:
                ans.append((i, "R"))
                A[i] += 1
    return 


N = int(input())
A = list(map(int, input().split())) + [10 ** 18]
B = list(map(int, input().split()))

ans = []
for i in range(N):
    dfs(i)
print(len(ans))
for k, c in ans:
    print(k + 1, c)
0