結果

問題 No.1650 Moving Coins
ユーザー chocoruskchocorusk
提出日時 2021-07-18 04:36:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 148,540 KB
最終ジャッジ日時 2024-10-14 02:17:30
合計ジャッジ時間 9,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 155 ms
98,304 KB
testcase_04 AC 132 ms
91,776 KB
testcase_05 AC 150 ms
95,616 KB
testcase_06 AC 158 ms
98,304 KB
testcase_07 AC 159 ms
98,304 KB
testcase_08 AC 228 ms
117,292 KB
testcase_09 AC 227 ms
114,288 KB
testcase_10 AC 231 ms
118,804 KB
testcase_11 AC 225 ms
111,432 KB
testcase_12 AC 201 ms
103,916 KB
testcase_13 AC 205 ms
104,224 KB
testcase_14 AC 225 ms
109,280 KB
testcase_15 AC 192 ms
104,160 KB
testcase_16 AC 244 ms
117,996 KB
testcase_17 AC 242 ms
118,088 KB
testcase_18 AC 256 ms
120,276 KB
testcase_19 AC 268 ms
146,556 KB
testcase_20 AC 264 ms
148,540 KB
testcase_21 AC 272 ms
143,032 KB
testcase_22 AC 285 ms
138,444 KB
testcase_23 AC 303 ms
138,732 KB
testcase_24 AC 145 ms
95,488 KB
testcase_25 AC 152 ms
96,896 KB
testcase_26 AC 172 ms
139,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=["*"]+list(map(int,input().split()))+[10**8]
B=["*"]+list(map(int,input().split()))+[10**8]

D=[0]*(N+2)
for i in range(1,N+1):
    if A[i]<B[i]:
        D[i]=1
    elif A[i]>B[i]:
        D[i]=-1

X=[]
Y=[]
a=D[1]
for i in range(1,N+2):
    if D[i]!=a:
        X.append(Y)
        Y=[]
        a=D[i]
    Y.append(i)

X.append(Y)

Command=[]
for y in X:
    if D[y[0]]==1:
        for z in y[::-1]:
            while A[z]<B[z]:
                Command.append((z,"R"))
                A[z]+=1
    elif D[y[0]]==-1:
        for z in y:
            while A[z]>B[z]:
                Command.append((z,"L"))
                A[z]-=1
    else:
        continue

print(len(Command))
for c in Command:
    print(*c)
0