結果

問題 No.2673 A present from B
ユーザー PNJPNJ
提出日時 2024-03-15 21:51:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-09-30 00:51:37
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,580 KB
testcase_01 AC 37 ms
52,336 KB
testcase_02 AC 37 ms
52,960 KB
testcase_03 AC 36 ms
52,712 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,324 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 35 ms
52,412 KB
testcase_10 AC 36 ms
52,404 KB
testcase_11 AC 38 ms
52,076 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
52,472 KB
testcase_23 WA -
testcase_24 AC 35 ms
52,952 KB
testcase_25 WA -
testcase_26 AC 34 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().strip()

def Map():
  return list(map(int,input().split()))

N,M = Map()
A = Map()
P = [i for i in range(N)]
for j in range(M):
  a = A[j] - 1
  b = A[j] % N
  P[a],P[b] = P[b],P[a]

d = {}
for i in range(N):
  d[P[i]] = i

B = []
for i in range(1,N):
  ans = min(d[i],N - d[i])
  B.append(ans)
print(*B)
0