結果
問題 | No.1013 〇マス進む |
ユーザー | nehan_der_thal |
提出日時 | 2020-03-20 23:09:57 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 392 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 93,184 KB |
最終ジャッジ日時 | 2024-05-09 01:04:10 |
合計ジャッジ時間 | 7,838 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,600 KB |
testcase_01 | AC | 42 ms
51,968 KB |
testcase_02 | AC | 42 ms
51,968 KB |
testcase_03 | AC | 66 ms
65,408 KB |
testcase_04 | AC | 59 ms
62,336 KB |
testcase_05 | AC | 72 ms
67,328 KB |
testcase_06 | AC | 68 ms
65,792 KB |
testcase_07 | AC | 74 ms
67,840 KB |
testcase_08 | AC | 73 ms
67,200 KB |
testcase_09 | AC | 78 ms
69,504 KB |
testcase_10 | AC | 75 ms
68,352 KB |
testcase_11 | AC | 66 ms
64,512 KB |
testcase_12 | AC | 78 ms
70,272 KB |
testcase_13 | AC | 167 ms
77,312 KB |
testcase_14 | AC | 1,288 ms
82,944 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
ソースコード
N, K = map(int, input().split()) P = list(map(int, input().split())) d = [0]*N for i in range(N): d[i] = (P[i]+i) % N #print(d) #vs = set() rs = [0] * N for i in range(N): # if i in vs: # continue pvs = set([i]) path = [] lps = [] lpc = 0 v = i while 1: path.append(v) lps.append(lpc) u = d[v] if u <= v: lpc += 1 if u in pvs: j = path.index(u) ss = len(path) - j lpp = lpc - lps[j] break # if u in vs: # break # vs.add(u) pvs.add(u) v = u for i in range(len(path)): if K+i >= j: x = path[(K-j+i)%ss + j] lp = lps[(K-j+i)%ss + j] + ((K-j+i)//ss)*lpp - lps[i] else: x = path[K+i] lp = lps[K+i] - lps[i] rs[path[i]] = x+1 + lp*N # print(path[i], x+1, lp*N) # print(i, j, ss, path) for i in range(N): print(rs[i])