結果

問題 No.1650 Moving Coins
ユーザー H20H20
提出日時 2021-08-20 22:51:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 123,580 KB
最終ジャッジ日時 2024-10-14 05:02:21
合計ジャッジ時間 7,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 84 ms
76,160 KB
testcase_04 AC 88 ms
76,032 KB
testcase_05 AC 89 ms
76,288 KB
testcase_06 AC 98 ms
76,544 KB
testcase_07 AC 88 ms
76,160 KB
testcase_08 AC 140 ms
103,040 KB
testcase_09 AC 128 ms
103,808 KB
testcase_10 AC 138 ms
103,296 KB
testcase_11 AC 149 ms
103,808 KB
testcase_12 AC 122 ms
91,136 KB
testcase_13 AC 125 ms
91,648 KB
testcase_14 AC 145 ms
103,808 KB
testcase_15 AC 117 ms
88,704 KB
testcase_16 AC 160 ms
106,240 KB
testcase_17 AC 152 ms
104,448 KB
testcase_18 AC 173 ms
104,736 KB
testcase_19 AC 168 ms
122,824 KB
testcase_20 AC 165 ms
123,580 KB
testcase_21 AC 175 ms
122,432 KB
testcase_22 AC 182 ms
121,160 KB
testcase_23 AC 179 ms
121,148 KB
testcase_24 AC 75 ms
75,648 KB
testcase_25 AC 83 ms
76,160 KB
testcase_26 AC 124 ms
108,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
L = []
R = []
ans = 0
for i in range(N):
    if A[i]>B[i]:
        L.append(i)
    if A[i]<B[i]:
        R.append(i)
    ans += abs(A[i]-B[i])
R.reverse()
print(ans)
for l in L:
    for _ in range(abs(A[l]-B[l])):
        print(str(l+1)+" L")
for r in R:
    for _ in range(abs(A[r]-B[r])):
        print(str(r+1)+" R")
0