結果

問題 No.1650 Moving Coins
ユーザー yuusanlondonyuusanlondon
提出日時 2021-08-20 21:52:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 131,752 KB
最終ジャッジ日時 2024-10-14 03:23:24
合計ジャッジ時間 8,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 106 ms
88,960 KB
testcase_04 AC 97 ms
88,960 KB
testcase_05 AC 105 ms
89,344 KB
testcase_06 AC 108 ms
88,960 KB
testcase_07 AC 110 ms
88,832 KB
testcase_08 AC 166 ms
108,788 KB
testcase_09 AC 158 ms
103,552 KB
testcase_10 AC 168 ms
107,648 KB
testcase_11 AC 178 ms
105,452 KB
testcase_12 AC 149 ms
94,720 KB
testcase_13 AC 148 ms
94,976 KB
testcase_14 AC 168 ms
103,680 KB
testcase_15 AC 141 ms
94,592 KB
testcase_16 AC 180 ms
110,296 KB
testcase_17 AC 185 ms
109,432 KB
testcase_18 AC 193 ms
117,776 KB
testcase_19 AC 190 ms
131,752 KB
testcase_20 AC 196 ms
131,388 KB
testcase_21 AC 201 ms
130,112 KB
testcase_22 AC 200 ms
130,624 KB
testcase_23 AC 198 ms
130,492 KB
testcase_24 AC 104 ms
95,104 KB
testcase_25 AC 108 ms
90,368 KB
testcase_26 AC 145 ms
122,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ans=[]
s=[]
for i in range(n):
    if a[i]<b[i]:
        s.append('R')
    else:
        s.append('L')
for i in range(n):
  if s[i]=='L':
    for j in range(a[i]-b[i]):
      ans.append(' '.join([str(i+1),'L']))
for i in range(n-1,-1,-1):
  if s[i]=='R':
    for j in range(b[i]-a[i]):
      ans.append(' '.join([str(i+1),'R']))
print(len(ans))
for i in ans:
    print(i)
0