結果

問題 No.1650 Moving Coins
ユーザー ayaoniayaoni
提出日時 2021-08-20 23:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 266,588 KB
最終ジャッジ日時 2024-10-14 06:22:36
合計ジャッジ時間 9,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,196 KB
testcase_01 AC 41 ms
59,920 KB
testcase_02 AC 40 ms
61,932 KB
testcase_03 AC 227 ms
88,456 KB
testcase_04 AC 137 ms
85,680 KB
testcase_05 AC 213 ms
87,572 KB
testcase_06 AC 210 ms
87,652 KB
testcase_07 AC 179 ms
86,784 KB
testcase_08 AC 173 ms
105,080 KB
testcase_09 AC 193 ms
112,756 KB
testcase_10 AC 163 ms
105,312 KB
testcase_11 AC 227 ms
105,652 KB
testcase_12 AC 240 ms
100,520 KB
testcase_13 AC 214 ms
100,308 KB
testcase_14 AC 279 ms
112,500 KB
testcase_15 AC 342 ms
96,556 KB
testcase_16 AC 310 ms
107,264 KB
testcase_17 AC 328 ms
105,512 KB
testcase_18 AC 224 ms
112,504 KB
testcase_19 AC 541 ms
266,588 KB
testcase_20 AC 184 ms
118,072 KB
testcase_21 AC 391 ms
184,816 KB
testcase_22 AC 201 ms
117,716 KB
testcase_23 AC 199 ms
117,224 KB
testcase_24 AC 116 ms
84,904 KB
testcase_25 AC 124 ms
85,372 KB
testcase_26 AC 119 ms
116,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
A = LI()
B = LI()
flag = [0]*(10**6+1)
for a in A:
    flag[a] += 1

ans = sum(abs(a-b) for a,b in zip(A,B))
print(ans)


def right(x,i):  # xにあるコインを1つ右に
    if flag[x+1]:
        right(x+1,i+1)
    flag[x] = 0
    flag[x+1] = 1
    print(i,'R')
    A[i-1] += 1


for i in range(N):
    a = A[i]
    b = B[i]
    if a >= b:
        for _ in range(a-b):
            print(i+1,'L')
    else:
        for j in range(a,b):
            right(j,i+1)
0