結果

問題 No.1650 Moving Coins
ユーザー ああいいああいい
提出日時 2022-04-27 10:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 132,780 KB
最終ジャッジ日時 2024-06-28 07:43:13
合計ジャッジ時間 8,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 146 ms
98,944 KB
testcase_04 AC 144 ms
91,904 KB
testcase_05 AC 170 ms
96,384 KB
testcase_06 AC 173 ms
98,688 KB
testcase_07 AC 175 ms
98,816 KB
testcase_08 AC 197 ms
110,816 KB
testcase_09 AC 192 ms
103,168 KB
testcase_10 AC 200 ms
111,160 KB
testcase_11 AC 233 ms
104,136 KB
testcase_12 AC 202 ms
100,220 KB
testcase_13 AC 205 ms
100,792 KB
testcase_14 AC 215 ms
103,244 KB
testcase_15 AC 176 ms
100,076 KB
testcase_16 AC 221 ms
105,728 KB
testcase_17 AC 213 ms
106,564 KB
testcase_18 AC 225 ms
109,348 KB
testcase_19 AC 233 ms
132,780 KB
testcase_20 AC 225 ms
132,612 KB
testcase_21 AC 245 ms
127,676 KB
testcase_22 AC 229 ms
132,096 KB
testcase_23 AC 232 ms
131,908 KB
testcase_24 AC 139 ms
98,688 KB
testcase_25 AC 164 ms
99,200 KB
testcase_26 AC 120 ms
108,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ans = []
left = 0
while left < N:
    right = left
    while right < N and A[right] < B[right]:
        right += 1
    for i in reversed(range(left,right)):
        for j in range(A[i],B[i]):
            ans.append((i + 1,"R"))
    if right < N:
        for j in range(A[right],B[right],-1):
            ans.append((right + 1,"L"))
    left = right + 1
print(len(ans))
for k,c in ans:
    print(k,c)

        
0