結果

問題 No.1650 Moving Coins
ユーザー rlangevinrlangevin
提出日時 2023-01-15 11:26:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 654 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 55,808 KB
最終ジャッジ日時 2024-12-28 00:50:28
合計ジャッジ時間 16,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 351 ms
24,448 KB
testcase_04 AC 271 ms
20,992 KB
testcase_05 AC 323 ms
23,296 KB
testcase_06 AC 355 ms
24,576 KB
testcase_07 AC 366 ms
24,832 KB
testcase_08 AC 464 ms
37,352 KB
testcase_09 AC 508 ms
36,792 KB
testcase_10 AC 474 ms
37,760 KB
testcase_11 AC 499 ms
38,008 KB
testcase_12 AC 446 ms
32,612 KB
testcase_13 AC 455 ms
32,812 KB
testcase_14 AC 487 ms
37,016 KB
testcase_15 AC 425 ms
30,816 KB
testcase_16 AC 510 ms
38,036 KB
testcase_17 AC 487 ms
37,848 KB
testcase_18 AC 528 ms
41,224 KB
testcase_19 AC 654 ms
55,808 KB
testcase_20 AC 549 ms
48,156 KB
testcase_21 AC 604 ms
48,224 KB
testcase_22 AC 582 ms
48,100 KB
testcase_23 AC 567 ms
48,108 KB
testcase_24 AC 367 ms
24,832 KB
testcase_25 AC 353 ms
24,832 KB
testcase_26 AC 197 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