結果

問題 No.1650 Moving Coins
ユーザー huka_hukahuka_huka
提出日時 2021-08-22 08:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 139,380 KB
最終ジャッジ日時 2024-11-06 03:47:16
合計ジャッジ時間 7,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,180 KB
testcase_01 AC 38 ms
52,952 KB
testcase_02 AC 38 ms
53,788 KB
testcase_03 AC 95 ms
95,192 KB
testcase_04 AC 83 ms
89,532 KB
testcase_05 AC 90 ms
93,368 KB
testcase_06 AC 95 ms
95,352 KB
testcase_07 AC 97 ms
95,476 KB
testcase_08 AC 153 ms
113,568 KB
testcase_09 AC 143 ms
103,872 KB
testcase_10 AC 150 ms
114,508 KB
testcase_11 AC 153 ms
109,232 KB
testcase_12 AC 128 ms
98,536 KB
testcase_13 AC 127 ms
100,044 KB
testcase_14 AC 144 ms
103,448 KB
testcase_15 AC 122 ms
97,976 KB
testcase_16 AC 162 ms
111,760 KB
testcase_17 AC 156 ms
111,040 KB
testcase_18 AC 172 ms
114,656 KB
testcase_19 AC 183 ms
139,380 KB
testcase_20 AC 178 ms
135,948 KB
testcase_21 AC 183 ms
132,372 KB
testcase_22 AC 184 ms
131,976 KB
testcase_23 AC 187 ms
131,960 KB
testcase_24 AC 82 ms
89,488 KB
testcase_25 AC 96 ms
95,596 KB
testcase_26 AC 121 ms
108,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yc1650
n = int(input())
a = list(map(int, input().split()))

b = list(map(int, input().split()))
lq = []
rq = []
for i in range(n):
    if a[i] < b[i]:
        rq.append(i)
    elif a[i] > b[i]:
        lq.append(i)
m = 0
ans = []
for i in rq[::-1]:
    m += b[i]-a[i]
    for _ in range(b[i]-a[i]):
        ans.append(str(i+1)+" R")
for i in lq:
    m += a[i]-b[i]
    for _ in range(a[i]-b[i]):
        ans.append(str(i+1)+" L")
print(m)
for i in ans:
    print(i)
0