結果

問題 No.1650 Moving Coins
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-21 14:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 130,476 KB
最終ジャッジ日時 2024-10-15 05:48:06
合計ジャッジ時間 8,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 147 ms
84,096 KB
testcase_04 AC 127 ms
78,336 KB
testcase_05 AC 147 ms
83,840 KB
testcase_06 AC 150 ms
83,968 KB
testcase_07 AC 157 ms
86,860 KB
testcase_08 AC 184 ms
105,924 KB
testcase_09 AC 175 ms
103,036 KB
testcase_10 AC 192 ms
107,052 KB
testcase_11 AC 205 ms
105,412 KB
testcase_12 AC 177 ms
92,216 KB
testcase_13 AC 179 ms
92,684 KB
testcase_14 AC 196 ms
103,296 KB
testcase_15 AC 170 ms
91,136 KB
testcase_16 AC 214 ms
108,900 KB
testcase_17 AC 220 ms
109,212 KB
testcase_18 AC 230 ms
114,280 KB
testcase_19 AC 220 ms
130,476 KB
testcase_20 AC 229 ms
129,864 KB
testcase_21 AC 237 ms
121,740 KB
testcase_22 AC 236 ms
114,884 KB
testcase_23 AC 237 ms
115,148 KB
testcase_24 AC 114 ms
78,592 KB
testcase_25 AC 131 ms
79,744 KB
testcase_26 AC 121 ms
108,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans1 = []
ans2 = []
m = 0
for i, (a, b) in enumerate(zip(A, B)):
    d = a-b
    if d < 0:
        ans1 += [(i+1, 'R')]*abs(d)
    elif d > 0:
        ans2 += [(i+1, 'L')]*abs(d)
    m += abs(d)
print(m)
ans1.reverse()
for k, c in ans1:
    print(k, c)
for k, c in ans2:
    print(k, c)
0