結果

問題 No.1650 Moving Coins
ユーザー ntudantuda
提出日時 2021-08-21 13:37:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 664 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 124,788 KB
最終ジャッジ日時 2024-10-15 04:54:05
合計ジャッジ時間 10,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,272 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 183 ms
101,780 KB
testcase_04 AC 166 ms
95,248 KB
testcase_05 AC 172 ms
99,320 KB
testcase_06 AC 196 ms
103,840 KB
testcase_07 AC 189 ms
104,128 KB
testcase_08 AC 226 ms
121,148 KB
testcase_09 AC 269 ms
111,044 KB
testcase_10 AC 223 ms
121,932 KB
testcase_11 AC 413 ms
119,152 KB
testcase_12 AC 263 ms
110,464 KB
testcase_13 AC 288 ms
110,756 KB
testcase_14 AC 325 ms
110,620 KB
testcase_15 AC 202 ms
110,464 KB
testcase_16 AC 242 ms
122,180 KB
testcase_17 AC 243 ms
120,264 KB
testcase_18 AC 247 ms
124,788 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
j = 0
ans = []
while A != B:
    for i in range(N):
        if A[i] == B[i]:
            continue
        elif A[i] > B[i]:
            if i == 0:
                ans.append([i+1, "L"])
                A[i] -= 1
            elif A[i] - A[i-1] > 1:
                ans.append([i+1, "L"])
                A[i] -= 1
        elif A[i] < B[i]:
            if i == N - 1:
                ans.append([i+1, "R"])
                A[i] += 1
            elif A[i + 1] - A[i] > 1:
                ans.append([i+1, "R"])
                A[i] += 1
print(len(ans))
for a in ans:
    print(*a)
0