結果

問題 No.1650 Moving Coins
ユーザー H3PO4H3PO4
提出日時 2021-08-20 21:56:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,336 KB
最終ジャッジ日時 2024-10-14 03:30:53
合計ジャッジ時間 13,912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 294 ms
24,448 KB
testcase_04 AC 226 ms
20,864 KB
testcase_05 AC 274 ms
23,296 KB
testcase_06 AC 302 ms
24,704 KB
testcase_07 AC 305 ms
24,960 KB
testcase_08 AC 430 ms
39,896 KB
testcase_09 AC 443 ms
41,296 KB
testcase_10 AC 444 ms
40,764 KB
testcase_11 AC 454 ms
42,048 KB
testcase_12 AC 394 ms
36,716 KB
testcase_13 AC 399 ms
36,672 KB
testcase_14 AC 439 ms
40,732 KB
testcase_15 AC 379 ms
35,280 KB
testcase_16 AC 468 ms
41,812 KB
testcase_17 AC 452 ms
41,092 KB
testcase_18 AC 492 ms
42,096 KB
testcase_19 AC 577 ms
48,336 KB
testcase_20 AC 563 ms
46,788 KB
testcase_21 AC 570 ms
47,548 KB
testcase_22 AC 576 ms
48,152 KB
testcase_23 AC 570 ms
48,160 KB
testcase_24 AC 303 ms
24,832 KB
testcase_25 AC 303 ms
25,088 KB
testcase_26 AC 214 ms
38,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


ans = []
def move(i):
    x, y = A[i], B[i]
    if x < y:
        for _ in range(y - x):
            ans.append((i + 1, 'R'))
    elif x > y:
        for _ in range(x - y):
            ans.append((i + 1, 'L'))

stk = []
for i, (a, b) in enumerate(zip(A, B)):
    if a < b:
        stk.append(i)
    elif a > b:
        while stk:
            j = stk.pop()
            move(j)
        move(i)
while stk:
    j = stk.pop()
    move(j)

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