結果

問題 No.1650 Moving Coins
ユーザー tcltktcltk
提出日時 2021-10-17 05:54:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 152,264 KB
最終ジャッジ日時 2024-09-17 19:37:02
合計ジャッジ時間 12,849 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
86,864 KB
testcase_01 AC 125 ms
87,024 KB
testcase_02 AC 126 ms
86,980 KB
testcase_03 AC 237 ms
114,248 KB
testcase_04 AC 232 ms
110,172 KB
testcase_05 AC 242 ms
109,512 KB
testcase_06 AC 258 ms
115,068 KB
testcase_07 AC 259 ms
113,744 KB
testcase_08 AC 264 ms
127,916 KB
testcase_09 AC 274 ms
120,012 KB
testcase_10 AC 267 ms
125,756 KB
testcase_11 AC 302 ms
121,900 KB
testcase_12 AC 278 ms
112,916 KB
testcase_13 AC 283 ms
112,712 KB
testcase_14 AC 290 ms
118,888 KB
testcase_15 AC 252 ms
116,368 KB
testcase_16 AC 305 ms
125,868 KB
testcase_17 AC 291 ms
125,904 KB
testcase_18 AC 304 ms
131,216 KB
testcase_19 AC 319 ms
152,264 KB
testcase_20 AC 305 ms
142,972 KB
testcase_21 AC 338 ms
145,640 KB
testcase_22 AC 313 ms
142,660 KB
testcase_23 AC 312 ms
143,076 KB
testcase_24 AC 238 ms
126,096 KB
testcase_25 AC 228 ms
110,672 KB
testcase_26 AC 210 ms
142,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """2
# 1 2
# 2 4
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

wait = False
q = []
result = []
for i in range(N):
    if A[i] < B[i]:
        for _ in range(B[i]-A[i]):
            q.append((i+1, 'R'))
    else:
        while q:
            result.append(q.pop())
        for _ in range(A[i]-B[i]):
            result.append((i+1, 'L'))
while q:
    result.append(q.pop())

print(len(result))
for i, c in result:
    print(i, c)


0