結果

問題 No.1650 Moving Coins
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-08-21 08:15:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 128,928 KB
最終ジャッジ日時 2024-10-14 17:06:06
合計ジャッジ時間 9,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 126 ms
77,184 KB
testcase_04 AC 116 ms
76,928 KB
testcase_05 AC 124 ms
77,568 KB
testcase_06 AC 132 ms
77,568 KB
testcase_07 AC 132 ms
77,696 KB
testcase_08 AC 236 ms
108,432 KB
testcase_09 AC 211 ms
103,168 KB
testcase_10 AC 215 ms
109,464 KB
testcase_11 AC 264 ms
109,576 KB
testcase_12 AC 199 ms
92,032 KB
testcase_13 AC 195 ms
92,032 KB
testcase_14 AC 240 ms
103,424 KB
testcase_15 AC 187 ms
89,600 KB
testcase_16 AC 276 ms
114,252 KB
testcase_17 AC 278 ms
114,944 KB
testcase_18 AC 338 ms
119,932 KB
testcase_19 AC 284 ms
128,928 KB
testcase_20 AC 272 ms
128,300 KB
testcase_21 AC 277 ms
127,284 KB
testcase_22 AC 277 ms
126,136 KB
testcase_23 AC 287 ms
126,652 KB
testcase_24 AC 117 ms
77,312 KB
testcase_25 AC 113 ms
76,928 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()))
l = []
kaisu = 0
flg = 0
q_flg = 0
cnt = 0
for i in range(n):
    if a[i] == b[i]:
        cnt += 1
        continue
    kaisu += abs(a[i] - b[i])
    flg = 1 if a[i] > b[i] else -1
    if q_flg != flg:
        ren = 1
        cnt += 1
    else:
        ren += 1
    l.append((i+1,flg * ren,cnt))
    q_flg = flg
print(kaisu)
l.sort(key = lambda x :(x[2],x[1]))
for i,ren,cnt in l:
    mark = "R" if a[i-1] < b[i-1] else "L"
    for j in range(abs(a[i-1] - b[i-1])):
        print(i,mark)
0