結果

問題 No.1650 Moving Coins
ユーザー judgelawjudgelaw
提出日時 2021-08-20 21:49:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,544 KB
最終ジャッジ日時 2024-10-14 03:18:40
合計ジャッジ時間 14,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 251 ms
10,880 KB
testcase_04 AC 196 ms
10,752 KB
testcase_05 AC 231 ms
10,880 KB
testcase_06 AC 261 ms
10,752 KB
testcase_07 AC 257 ms
10,880 KB
testcase_08 AC 445 ms
31,296 KB
testcase_09 AC 442 ms
29,916 KB
testcase_10 AC 460 ms
31,396 KB
testcase_11 AC 466 ms
31,732 KB
testcase_12 AC 361 ms
22,096 KB
testcase_13 AC 367 ms
22,720 KB
testcase_14 AC 434 ms
29,328 KB
testcase_15 AC 344 ms
19,688 KB
testcase_16 AC 471 ms
33,884 KB
testcase_17 AC 480 ms
34,860 KB
testcase_18 AC 528 ms
38,012 KB
testcase_19 AC 616 ms
49,544 KB
testcase_20 AC 619 ms
48,232 KB
testcase_21 AC 614 ms
48,260 KB
testcase_22 AC 629 ms
48,088 KB
testcase_23 AC 629 ms
48,264 KB
testcase_24 AC 260 ms
10,624 KB
testcase_25 AC 272 ms
10,752 KB
testcase_26 AC 381 ms
49,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
ans=0
handL=[]
handR=[]
for i in range(N):
    temp=abs(A[i]-B[i])
    ans+=temp
    if A[i]>B[i]:
        handL.append((i+1,"L",temp))
    else:
        handR.append((i+1,"R",temp))

handR=handR[::-1]

print(ans)
for i,w,cnt in handL:
    for _ in range(cnt):
        print(i,w)

for i,w,cnt in handR:
    for _ in range(cnt):
        print(i,w)
0