結果

問題 No.1650 Moving Coins
ユーザー huka_hukahuka_huka
提出日時 2021-08-22 07:35:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 113,528 KB
最終ジャッジ日時 2024-11-06 03:18:50
合計ジャッジ時間 9,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,152 KB
testcase_01 AC 36 ms
51,936 KB
testcase_02 AC 38 ms
52,308 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 148 ms
103,752 KB
testcase_09 WA -
testcase_10 AC 148 ms
103,896 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 AC 178 ms
110,644 KB
testcase_21 RE -
testcase_22 AC 184 ms
109,688 KB
testcase_23 AC 181 ms
109,704 KB
testcase_24 AC 91 ms
95,400 KB
testcase_25 AC 94 ms
95,644 KB
testcase_26 AC 119 ms
108,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yc1650
def solver(i, m):
    if a[i]-b[i] < 0:
        while a[i] < b[i]:
            if i+1 < n and a[i+1] == a[i]+1:
                m += solver(i+1, m)
            a[i] += 1
            m += 1
            ans.append(str(i+1)+" R")
    elif a[i]-b[i] > 0:
        while a[i] > b[i]:
            if i-1 >= 0 and a[i] == a[i-1]+1:
                m += solver(i-1, m)
            a[i] -= 1
            m += 1
            ans.append(str(i+1)+" L")
    return m
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = []
m = 0
for i in range(n):
    m += solver(i, 0)
print(m)
for i in ans:
    print(i)
0