結果

問題 No.1650 Moving Coins
ユーザー 👑 KazunKazun
提出日時 2021-07-31 18:44:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 850 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 148,148 KB
最終ジャッジ日時 2024-10-14 02:19:29
合計ジャッジ時間 9,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 150 ms
98,560 KB
testcase_04 AC 135 ms
91,776 KB
testcase_05 AC 146 ms
96,000 KB
testcase_06 AC 153 ms
98,304 KB
testcase_07 AC 156 ms
98,432 KB
testcase_08 AC 229 ms
117,276 KB
testcase_09 AC 217 ms
114,284 KB
testcase_10 AC 224 ms
119,308 KB
testcase_11 AC 227 ms
111,424 KB
testcase_12 AC 203 ms
104,040 KB
testcase_13 AC 199 ms
104,496 KB
testcase_14 AC 223 ms
109,552 KB
testcase_15 AC 192 ms
104,280 KB
testcase_16 AC 246 ms
118,244 KB
testcase_17 AC 237 ms
118,336 KB
testcase_18 AC 256 ms
120,280 KB
testcase_19 AC 265 ms
146,696 KB
testcase_20 AC 262 ms
148,148 KB
testcase_21 AC 263 ms
143,028 KB
testcase_22 AC 283 ms
138,316 KB
testcase_23 AC 285 ms
138,720 KB
testcase_24 AC 142 ms
95,744 KB
testcase_25 AC 146 ms
96,896 KB
testcase_26 AC 163 ms
139,640 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