結果

問題 No.1650 Moving Coins
ユーザー playerplayer
提出日時 2024-01-16 23:24:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 135,288 KB
最終ジャッジ日時 2024-09-28 03:05:33
合計ジャッジ時間 8,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 157 ms
101,120 KB
testcase_04 AC 139 ms
99,200 KB
testcase_05 AC 151 ms
100,944 KB
testcase_06 AC 162 ms
101,484 KB
testcase_07 AC 153 ms
101,420 KB
testcase_08 AC 215 ms
119,764 KB
testcase_09 AC 205 ms
115,004 KB
testcase_10 AC 218 ms
121,440 KB
testcase_11 AC 223 ms
122,568 KB
testcase_12 AC 193 ms
110,004 KB
testcase_13 AC 196 ms
109,764 KB
testcase_14 AC 214 ms
115,664 KB
testcase_15 AC 188 ms
109,312 KB
testcase_16 AC 238 ms
126,028 KB
testcase_17 AC 224 ms
125,128 KB
testcase_18 AC 238 ms
128,860 KB
testcase_19 AC 256 ms
134,168 KB
testcase_20 AC 246 ms
135,288 KB
testcase_21 AC 250 ms
130,480 KB
testcase_22 AC 257 ms
130,304 KB
testcase_23 AC 264 ms
129,972 KB
testcase_24 AC 160 ms
101,632 KB
testcase_25 AC 168 ms
101,376 KB
testcase_26 AC 117 ms
107,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0

if a == b:
    print(0)
    exit()
    
lism = []
lisp = []

for i in range(n):
    if a[i] == b[i]:
        continue
    if a[i] > b[i]:
        lisp.append([i+1,a[i]-b[i]])
    else:
        lism.append([i+1,b[i]-a[i]])

lism.reverse()    
ans = []
num = 0

for i,cnt in lism:
    for j in range(cnt):
        ans.append([i,"R"])
    num += cnt

for i,cnt in lisp:
    for j in range(cnt):
        ans.append([i,"L"])
    num += cnt

print(num)        
for i in ans:
    print(*i)
        
0