結果
問題 | No.2673 A present from B |
ユーザー | sasa8uyauya |
提出日時 | 2024-03-15 22:34:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 294 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 60,672 KB |
最終ジャッジ日時 | 2024-09-30 01:59:59 |
合計ジャッジ時間 | 2,216 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
52,224 KB |
testcase_01 | AC | 43 ms
51,584 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 39 ms
51,584 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 41 ms
52,864 KB |
testcase_10 | AC | 42 ms
52,480 KB |
testcase_11 | AC | 40 ms
52,096 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 | 39 ms
51,840 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
n,m=map(int,input().split()) a=list(map(int,input().split())) p=[list(range(n))] for i in range(m): y=a[i]-1 p+=[p[-1]] p[-1][y],p[-1][y+1]=p[-1][y+1],p[-1][y] b=[n]*n g=p[-1][0] for i in range(len(p)): y=p[i].index(g) for j in range(n): b[p[i][j]]=min(b[p[i][j]],abs(y-j)) print(*b[1:])