結果

問題 No.241 出席番号(1)
ユーザー burita083burita083
提出日時 2021-06-17 02:04:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 86,088 KB
最終ジャッジ日時 2023-08-30 08:31:19
合計ジャッジ時間 12,952 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
79,980 KB
testcase_01 AC 175 ms
80,120 KB
testcase_02 AC 174 ms
80,008 KB
testcase_03 AC 174 ms
80,188 KB
testcase_04 AC 177 ms
79,848 KB
testcase_05 AC 174 ms
79,984 KB
testcase_06 AC 175 ms
80,016 KB
testcase_07 AC 173 ms
80,184 KB
testcase_08 AC 170 ms
80,180 KB
testcase_09 AC 173 ms
80,048 KB
testcase_10 AC 170 ms
80,020 KB
testcase_11 AC 516 ms
82,676 KB
testcase_12 AC 173 ms
80,020 KB
testcase_13 AC 173 ms
80,136 KB
testcase_14 AC 181 ms
82,436 KB
testcase_15 AC 174 ms
81,720 KB
testcase_16 AC 102 ms
77,412 KB
testcase_17 AC 172 ms
80,164 KB
testcase_18 AC 172 ms
80,020 KB
testcase_19 AC 172 ms
79,876 KB
testcase_20 AC 173 ms
79,876 KB
testcase_21 AC 186 ms
80,092 KB
testcase_22 AC 173 ms
80,184 KB
testcase_23 AC 178 ms
81,828 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 185 ms
82,584 KB
testcase_27 AC 1,035 ms
84,716 KB
testcase_28 AC 184 ms
82,736 KB
testcase_29 AC 176 ms
80,932 KB
testcase_30 WA -
testcase_31 AC 190 ms
82,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
for i in range(N):
  A.append(int(input()))
dp = [set() for i in range(N)]
for i, x in enumerate(A):
  for j in range(N):
    if j != x:
      dp[i].add(j)

ans = -float('inf')
import random
for i in range(300000):
  st = set()
  temp = 0
  l = []
  for d in dp:
    d -= st
    while True:
      if len(d) == 0:
        break
      item = random.sample(d, 1)
      if not item[0] in st:
        st.add(item[0])
        l.append(item[0])
        temp += 1
        break
  if temp == N:
    break
if len(l) < N:
  print(-1)
  exit()
for d in l:
  print(d)
0