結果

問題 No.1650 Moving Coins
ユーザー NoneNone
提出日時 2021-09-29 12:48:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 110,756 KB
最終ジャッジ日時 2024-07-16 09:36:18
合計ジャッジ時間 11,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,136 KB
testcase_01 AC 36 ms
54,868 KB
testcase_02 AC 35 ms
53,556 KB
testcase_03 AC 118 ms
87,920 KB
testcase_04 AC 111 ms
81,576 KB
testcase_05 AC 127 ms
85,476 KB
testcase_06 AC 137 ms
86,616 KB
testcase_07 AC 139 ms
86,956 KB
testcase_08 AC 228 ms
103,060 KB
testcase_09 WA -
testcase_10 AC 239 ms
103,396 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 273 ms
110,004 KB
testcase_21 WA -
testcase_22 AC 280 ms
109,524 KB
testcase_23 AC 283 ms
109,276 KB
testcase_24 AC 107 ms
78,768 KB
testcase_25 AC 122 ms
80,044 KB
testcase_26 AC 183 ms
108,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
res=0
res2=[]
for i in range(N):
    a,b=A[i],B[i]
    j=bisect_left(A,b+1)-1
    cnt=j-i
    if cnt>=0:
        for k in range(i,j+1)[::-1]:
            new_a=b+cnt
            res+=new_a-A[k]
            res2.extend([(k+1,"R")]*(new_a-A[k]))
            A[k]=new_a
            cnt-=1
    else:
        res2.extend([(i+1,"L")]*(A[i]-B[i]))
        res+=A[i]-B[i]
print(res)
for k,c in res2:
    print(k,c)
0