結果

問題 No.1650 Moving Coins
ユーザー kozykozy
提出日時 2021-08-20 21:50:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 84,148 KB
最終ジャッジ日時 2024-10-14 03:20:28
合計ジャッジ時間 15,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 391 ms
27,392 KB
testcase_04 AC 272 ms
23,424 KB
testcase_05 AC 326 ms
26,112 KB
testcase_06 AC 359 ms
27,648 KB
testcase_07 AC 374 ms
27,904 KB
testcase_08 AC 511 ms
57,000 KB
testcase_09 AC 516 ms
40,504 KB
testcase_10 AC 522 ms
57,952 KB
testcase_11 AC 532 ms
50,060 KB
testcase_12 AC 466 ms
36,568 KB
testcase_13 AC 467 ms
36,892 KB
testcase_14 AC 511 ms
46,016 KB
testcase_15 AC 447 ms
34,712 KB
testcase_16 AC 556 ms
55,808 KB
testcase_17 AC 529 ms
56,612 KB
testcase_18 AC 573 ms
58,328 KB
testcase_19 AC 647 ms
60,436 KB
testcase_20 AC 647 ms
84,148 KB
testcase_21 AC 654 ms
73,144 KB
testcase_22 AC 657 ms
82,736 KB
testcase_23 AC 650 ms
82,756 KB
testcase_24 AC 365 ms
27,904 KB
testcase_25 AC 368 ms
28,032 KB
testcase_26 AC 216 ms
59,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
def do(i):
  if i==N:
    return;
  if A[i]==B[i]:
    do(i+1)
    return;
  elif A[i]>B[i]:
    for j in range(A[i],B[i],-1):
      Q.append([i,"L"])
    do(i+1)
  else:
    flag=True
    if i!=N-1:
      if B[i]>=A[i+1]:
        do(i+1)
        flag=False
    for j in range(A[i],B[i]):
      Q.append([i,"R"])
    if flag:
      do(i+1)
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
Q=list()
do(0)
print(len(Q))
for a,b in Q:
  print(a+1,b)
0