結果
問題 | No.1650 Moving Coins |
ユーザー | titia |
提出日時 | 2021-08-20 21:46:15 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 520 bytes |
コンパイル時間 | 448 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 121,496 KB |
最終ジャッジ日時 | 2024-10-14 03:09:40 |
合計ジャッジ時間 | 9,944 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
57,216 KB |
testcase_01 | AC | 41 ms
51,712 KB |
testcase_02 | AC | 39 ms
51,840 KB |
testcase_03 | AC | 150 ms
98,944 KB |
testcase_04 | AC | 151 ms
92,032 KB |
testcase_05 | AC | 168 ms
96,256 KB |
testcase_06 | AC | 180 ms
98,560 KB |
testcase_07 | AC | 170 ms
99,072 KB |
testcase_08 | AC | 194 ms
111,076 KB |
testcase_09 | AC | 239 ms
102,016 KB |
testcase_10 | AC | 198 ms
111,808 KB |
testcase_11 | AC | 315 ms
110,984 KB |
testcase_12 | AC | 274 ms
99,888 KB |
testcase_13 | AC | 272 ms
99,960 KB |
testcase_14 | AC | 338 ms
102,528 KB |
testcase_15 | AC | 182 ms
100,096 KB |
testcase_16 | AC | 219 ms
115,016 KB |
testcase_17 | AC | 221 ms
114,852 KB |
testcase_18 | AC | 232 ms
121,496 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
import sys input = sys.stdin.readline N=int(input()) A=list(map(int,input().split())) B=list(map(int,input().split())) ANS=[] while A!=B: for i in range(N): if A[i]<B[i]: while A[i]<B[i] and (i+1==N or A[i+1]!=A[i]+1): ANS.append((i+1,"R")) A[i]+=1 elif A[i]>B[i]: while A[i]>B[i] and (i==0 or A[i-1]!=A[i]-1): ANS.append((i+1,"L")) A[i]-=1 print(len(ANS)) for x,y in ANS: print(x,y)