結果

問題 No.1650 Moving Coins
ユーザー ch1channnch1channn
提出日時 2022-12-13 17:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 118,432 KB
最終ジャッジ日時 2024-11-07 12:01:20
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 122 ms
101,444 KB
testcase_04 AC 111 ms
92,900 KB
testcase_05 AC 115 ms
98,520 KB
testcase_06 AC 124 ms
101,912 KB
testcase_07 AC 124 ms
102,112 KB
testcase_08 AC 162 ms
107,648 KB
testcase_09 AC 159 ms
103,936 KB
testcase_10 AC 167 ms
108,048 KB
testcase_11 AC 175 ms
109,816 KB
testcase_12 AC 152 ms
102,088 KB
testcase_13 AC 150 ms
102,020 KB
testcase_14 AC 170 ms
104,232 KB
testcase_15 AC 144 ms
100,480 KB
testcase_16 AC 179 ms
112,208 KB
testcase_17 AC 182 ms
111,248 KB
testcase_18 AC 182 ms
110,084 KB
testcase_19 AC 188 ms
118,432 KB
testcase_20 AC 188 ms
117,680 KB
testcase_21 AC 193 ms
117,932 KB
testcase_22 AC 194 ms
117,436 KB
testcase_23 AC 192 ms
117,304 KB
testcase_24 AC 119 ms
99,044 KB
testcase_25 AC 123 ms
100,456 KB
testcase_26 AC 129 ms
108,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
ans = []

for i in range(n):
	if a[i] <= b[i]:
		continue
	for _ in range(a[i]-b[i]):
		ans.append("%d L"%(i+1))
		
for i in range(n-1,-1,-1):
	if a[i] >= b[i]:
		continue
	for _ in range(b[i]-a[i]):
		ans.append("%d R"%(i+1))
		
print(len(ans))
print(*ans,sep="\n")
0