結果

問題 No.1650 Moving Coins
ユーザー c-yanc-yan
提出日時 2021-08-21 03:06:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,040 KB
最終ジャッジ日時 2024-10-14 11:46:22
合計ジャッジ時間 11,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 186 ms
25,728 KB
testcase_04 AC 138 ms
22,144 KB
testcase_05 AC 167 ms
24,576 KB
testcase_06 AC 179 ms
26,112 KB
testcase_07 AC 180 ms
26,240 KB
testcase_08 AC 294 ms
36,276 KB
testcase_09 AC 299 ms
34,316 KB
testcase_10 AC 312 ms
36,492 KB
testcase_11 AC 305 ms
35,684 KB
testcase_12 AC 252 ms
31,956 KB
testcase_13 AC 250 ms
32,172 KB
testcase_14 AC 295 ms
35,848 KB
testcase_15 AC 235 ms
30,548 KB
testcase_16 AC 319 ms
37,076 KB
testcase_17 AC 317 ms
36,812 KB
testcase_18 AC 346 ms
39,668 KB
testcase_19 AC 402 ms
43,552 KB
testcase_20 AC 411 ms
45,040 KB
testcase_21 AC 420 ms
44,908 KB
testcase_22 AC 418 ms
44,772 KB
testcase_23 AC 414 ms
45,016 KB
testcase_24 AC 182 ms
26,368 KB
testcase_25 AC 184 ms
26,240 KB
testcase_26 AC 221 ms
38,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

result = []
for i in range(N):
    if A[i] <= B[i]:
        continue
    for _ in range(A[i] - B[i]):
        result.append('%d L' % (i + 1))

for i in range(N - 1, -1, -1):
    if A[i] >= B[i]:
        continue
    for _ in range(B[i] - A[i]):
        result.append('%d R' % (i + 1))
print(len(result))
print(*result, sep='\n')
0