結果

問題 No.1650 Moving Coins
ユーザー irumo8202irumo8202
提出日時 2022-02-07 11:00:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,680 KB
最終ジャッジ日時 2024-06-12 01:36:32
合計ジャッジ時間 13,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 288 ms
24,448 KB
testcase_04 AC 232 ms
21,120 KB
testcase_05 AC 270 ms
23,424 KB
testcase_06 AC 298 ms
24,832 KB
testcase_07 AC 292 ms
24,960 KB
testcase_08 AC 449 ms
40,836 KB
testcase_09 AC 449 ms
39,696 KB
testcase_10 AC 444 ms
41,124 KB
testcase_11 AC 464 ms
41,584 KB
testcase_12 AC 388 ms
37,492 KB
testcase_13 AC 390 ms
37,096 KB
testcase_14 AC 439 ms
40,760 KB
testcase_15 AC 372 ms
35,680 KB
testcase_16 AC 464 ms
41,412 KB
testcase_17 AC 464 ms
40,784 KB
testcase_18 AC 516 ms
43,620 KB
testcase_19 AC 606 ms
49,680 KB
testcase_20 AC 586 ms
48,264 KB
testcase_21 AC 578 ms
48,264 KB
testcase_22 AC 578 ms
48,248 KB
testcase_23 AC 569 ms
48,248 KB
testcase_24 AC 301 ms
25,088 KB
testcase_25 AC 299 ms
25,088 KB
testcase_26 AC 283 ms
38,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


stack = []
ans = []
for i in range(N):
    now_pos = A[i]
    to_pos = B[i]
    move = abs(now_pos - to_pos)
    if A[i + 1] > to_pos:
        if now_pos < to_pos:
            direction = "R"
        else:
            direction = "L"
        for _ in range(move):
            ans.append((i + 1, direction))

        while stack:
            ind, move = stack.pop()
            for _ in range(move):
                ans.append((ind + 1, "R"))
    else:
        stack.append((i, move))

print(len(ans))
for row in ans:
    print(*row)
0