結果

問題 No.1650 Moving Coins
ユーザー lloyzlloyz
提出日時 2021-12-20 22:49:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,240 KB
最終ジャッジ日時 2024-09-15 15:22:40
合計ジャッジ時間 14,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 318 ms
24,448 KB
testcase_04 AC 246 ms
21,120 KB
testcase_05 AC 298 ms
23,424 KB
testcase_06 AC 327 ms
24,704 KB
testcase_07 AC 334 ms
24,832 KB
testcase_08 AC 457 ms
38,688 KB
testcase_09 AC 456 ms
39,032 KB
testcase_10 AC 467 ms
39,572 KB
testcase_11 AC 471 ms
40,460 KB
testcase_12 AC 414 ms
36,152 KB
testcase_13 AC 416 ms
36,268 KB
testcase_14 AC 451 ms
38,816 KB
testcase_15 AC 406 ms
34,944 KB
testcase_16 AC 492 ms
40,536 KB
testcase_17 AC 474 ms
40,536 KB
testcase_18 AC 509 ms
42,764 KB
testcase_19 AC 574 ms
46,828 KB
testcase_20 AC 590 ms
46,824 KB
testcase_21 AC 578 ms
46,924 KB
testcase_22 AC 592 ms
47,992 KB
testcase_23 AC 588 ms
48,240 KB
testcase_24 AC 338 ms
25,088 KB
testcase_25 AC 329 ms
24,960 KB
testcase_26 AC 203 ms
38,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

ANS = deque()
for i in range(n):
    if A[i] < B[i]:
        cnt = B[i] - A[i]
        for j in range(cnt):
            ANS.appendleft((i + 1, 'R'))
    elif A[i] > B[i]:
        cnt = A[i] - B[i]
        for j in range(cnt):
            ANS.append((i + 1, 'L'))

print(len(ANS))
for ind, direction in ANS:
    print(ind, direction)
0