結果

問題 No.1650 Moving Coins
ユーザー ayaoniayaoni
提出日時 2021-08-20 23:01:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,078 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 444,008 KB
最終ジャッジ日時 2024-10-14 06:14:01
合計ジャッジ時間 10,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
67,936 KB
testcase_01 AC 46 ms
60,352 KB
testcase_02 AC 40 ms
60,872 KB
testcase_03 AC 194 ms
100,960 KB
testcase_04 AC 163 ms
95,992 KB
testcase_05 AC 208 ms
102,568 KB
testcase_06 AC 214 ms
98,880 KB
testcase_07 AC 193 ms
99,264 KB
testcase_08 AC 192 ms
119,452 KB
testcase_09 AC 288 ms
113,132 KB
testcase_10 AC 195 ms
119,672 KB
testcase_11 AC 271 ms
107,368 KB
testcase_12 AC 288 ms
102,980 KB
testcase_13 AC 243 ms
101,184 KB
testcase_14 AC 300 ms
113,068 KB
testcase_15 AC 288 ms
102,136 KB
testcase_16 AC 321 ms
111,820 KB
testcase_17 AC 304 ms
112,344 KB
testcase_18 AC 289 ms
112,588 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

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


def right(x,i):  # xにあるコインを1つ右に
    res = []
    if flag[x+1]:
        R = right(x+1,i+1)
        for r in R:
            res.append(r)
    flag[x] = 0
    flag[x+1] = 1
    res.append((i,'R'))
    A[i-1] += 1
    return res


ANS = []
for i in range(N):
    a = A[i]
    b = B[i]
    if a >= b:
        for _ in range(a-b):
            ANS.append((i+1,'L'))
    else:
        for j in range(a,b):
            X = right(j,i+1)
            for x in X:
                ANS.append(x)

print(len(ANS))
for k,c in ANS:
    print(k,c)
0