結果

問題 No.1650 Moving Coins
ユーザー tamatotamato
提出日時 2021-08-20 21:48:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 135,192 KB
最終ジャッジ日時 2024-10-14 03:15:40
合計ジャッジ時間 8,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,608 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 115 ms
77,056 KB
testcase_04 AC 104 ms
76,672 KB
testcase_05 AC 116 ms
76,800 KB
testcase_06 AC 117 ms
76,672 KB
testcase_07 AC 126 ms
76,544 KB
testcase_08 AC 200 ms
106,364 KB
testcase_09 AC 206 ms
102,144 KB
testcase_10 AC 201 ms
106,900 KB
testcase_11 AC 213 ms
105,848 KB
testcase_12 AC 165 ms
91,776 KB
testcase_13 AC 178 ms
91,264 KB
testcase_14 AC 189 ms
102,016 KB
testcase_15 AC 155 ms
89,472 KB
testcase_16 AC 213 ms
112,588 KB
testcase_17 AC 234 ms
112,136 KB
testcase_18 AC 240 ms
121,352 KB
testcase_19 AC 245 ms
135,192 KB
testcase_20 AC 233 ms
129,076 KB
testcase_21 AC 248 ms
129,328 KB
testcase_22 AC 237 ms
125,040 KB
testcase_23 AC 234 ms
124,856 KB
testcase_24 AC 113 ms
76,928 KB
testcase_25 AC 128 ms
76,672 KB
testcase_26 AC 164 ms
128,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    A.append(10**7)
    B.append(10**7)
    N += 1

    st = []
    ans = []
    S = 0
    for i in range(N):
        a = A[i]
        b = B[i]
        S += abs(a - b)
        if a < b:
            st.append((i+1, b - a))
        else:
            while st:
                k, x = st.pop()
                ans.append((k, "R", x))
            ans.append((i+1, "L", a - b))

    print(S)
    for k, s, x in ans:
        for _ in range(x):
            print(k, s)


if __name__ == '__main__':
    main()
0