結果

問題 No.1650 Moving Coins
ユーザー hir355hir355
提出日時 2021-08-20 21:48:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 142,376 KB
最終ジャッジ日時 2024-10-14 03:13:20
合計ジャッジ時間 8,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 147 ms
98,816 KB
testcase_04 AC 130 ms
91,904 KB
testcase_05 AC 143 ms
96,384 KB
testcase_06 AC 151 ms
98,944 KB
testcase_07 AC 150 ms
99,200 KB
testcase_08 AC 194 ms
112,044 KB
testcase_09 AC 196 ms
104,192 KB
testcase_10 AC 205 ms
112,444 KB
testcase_11 AC 212 ms
104,048 KB
testcase_12 AC 187 ms
100,916 KB
testcase_13 AC 192 ms
100,872 KB
testcase_14 AC 205 ms
104,064 KB
testcase_15 AC 181 ms
100,480 KB
testcase_16 AC 221 ms
105,088 KB
testcase_17 AC 217 ms
105,948 KB
testcase_18 AC 222 ms
107,992 KB
testcase_19 AC 234 ms
134,676 KB
testcase_20 AC 231 ms
134,564 KB
testcase_21 AC 231 ms
134,180 KB
testcase_22 AC 240 ms
142,376 KB
testcase_23 AC 239 ms
142,376 KB
testcase_24 AC 146 ms
98,688 KB
testcase_25 AC 154 ms
99,072 KB
testcase_26 AC 134 ms
109,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
idx = n
l = [0] * n
for i in range(n):
    if a[i] < b[i]:
        l[i] = 1
x = [0]
if l[0] == 1:
    x.append(0)
for i in range(n - 1):
    if l[i] != l[i + 1]:
        x.append(i + 1)
x.append(n)
ans = []
for i in range(len(x) - 1):
    if i % 2 == 0:
        for j in range(x[i], x[i + 1]):
            for k in range(a[j] - b[j]):
               ans.append((j + 1, 'L'))
    else:
        for j in range(x[i + 1] - 1, x[i] - 1, -1):
            for k in range(b[j] - a[j]):
                ans.append((j + 1, 'R'))
print(len(ans))
for row in ans:
    print(*row)
0