結果

問題 No.2740 Old Maid
ユーザー rlangevinrlangevin
提出日時 2024-04-20 10:28:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 143,936 KB
最終ジャッジ日時 2024-10-12 06:00:38
合計ジャッジ時間 11,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
143,120 KB
testcase_01 WA -
testcase_02 AC 188 ms
143,328 KB
testcase_03 AC 190 ms
143,560 KB
testcase_04 WA -
testcase_05 AC 195 ms
143,832 KB
testcase_06 WA -
testcase_07 AC 193 ms
143,280 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 187 ms
143,372 KB
testcase_11 WA -
testcase_12 AC 185 ms
120,356 KB
testcase_13 AC 202 ms
125,096 KB
testcase_14 AC 89 ms
89,032 KB
testcase_15 AC 94 ms
94,924 KB
testcase_16 AC 159 ms
110,292 KB
testcase_17 AC 92 ms
87,492 KB
testcase_18 AC 193 ms
120,916 KB
testcase_19 AC 113 ms
101,800 KB
testcase_20 AC 216 ms
132,276 KB
testcase_21 AC 92 ms
91,704 KB
testcase_22 AC 149 ms
108,228 KB
testcase_23 AC 84 ms
83,956 KB
testcase_24 AC 109 ms
99,584 KB
testcase_25 AC 220 ms
134,368 KB
testcase_26 AC 57 ms
67,480 KB
testcase_27 AC 75 ms
79,540 KB
testcase_28 AC 162 ms
109,196 KB
testcase_29 AC 147 ms
105,468 KB
testcase_30 AC 63 ms
71,172 KB
testcase_31 AC 243 ms
142,244 KB
testcase_32 AC 121 ms
101,604 KB
testcase_33 AC 229 ms
136,588 KB
testcase_34 AC 149 ms
107,976 KB
testcase_35 AC 111 ms
99,600 KB
testcase_36 AC 118 ms
102,080 KB
testcase_37 AC 129 ms
98,948 KB
testcase_38 AC 106 ms
99,732 KB
testcase_39 AC 93 ms
86,840 KB
testcase_40 AC 177 ms
116,220 KB
testcase_41 AC 216 ms
131,768 KB
testcase_42 WA -
testcase_43 AC 40 ms
53,020 KB
testcase_44 AC 38 ms
52,452 KB
testcase_45 AC 41 ms
54,080 KB
testcase_46 AC 40 ms
52,068 KB
testcase_47 AC 39 ms
52,820 KB
testcase_48 AC 37 ms
53,308 KB
testcase_49 AC 39 ms
52,236 KB
testcase_50 AC 38 ms
52,348 KB
testcase_51 AC 38 ms
52,572 KB
testcase_52 WA -
testcase_53 AC 37 ms
53,088 KB
testcase_54 AC 38 ms
52,140 KB
testcase_55 AC 38 ms
52,508 KB
testcase_56 AC 37 ms
52,184 KB
testcase_57 AC 39 ms
52,736 KB
testcase_58 AC 39 ms
52,924 KB
testcase_59 AC 39 ms
52,368 KB
testcase_60 AC 38 ms
52,932 KB
testcase_61 WA -
testcase_62 AC 38 ms
52,500 KB
testcase_63 AC 38 ms
51,752 KB
testcase_64 AC 38 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split())) + ["$"]
nex = [-1] * (N + 1)
pre = [-1] * (N + 1)
for i in range(N):
    nex[P[i]] = P[i + 1]
    pre[P[i]] = P[i - 1]
    
ans = []
S = set()
for i in range(1, N):
    if nex[i] == "$" or i in S:
        continue
    ans.append(i)
    ans.append(nex[i])
    S.add(i)
    S.add(nex[i])
    p = pre[i]
    n = nex[nex[i]]
    if p != "$":
        nex[p] = n
    if n != "$":
        pre[n] = p
    
print(*ans)
    
0