結果

問題 No.241 出席番号(1)
ユーザー burita083burita083
提出日時 2021-06-17 02:01:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 124,496 KB
最終ジャッジ日時 2024-06-10 08:53:02
合計ジャッジ時間 15,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,612 KB
testcase_01 AC 62 ms
67,456 KB
testcase_02 AC 61 ms
67,940 KB
testcase_03 AC 60 ms
66,308 KB
testcase_04 AC 63 ms
67,912 KB
testcase_05 AC 60 ms
66,328 KB
testcase_06 AC 64 ms
68,180 KB
testcase_07 AC 60 ms
66,104 KB
testcase_08 AC 62 ms
67,712 KB
testcase_09 AC 61 ms
66,580 KB
testcase_10 AC 59 ms
66,236 KB
testcase_11 WA -
testcase_12 AC 60 ms
66,884 KB
testcase_13 AC 61 ms
66,688 KB
testcase_14 AC 66 ms
71,072 KB
testcase_15 AC 66 ms
68,564 KB
testcase_16 AC 49 ms
71,556 KB
testcase_17 AC 65 ms
66,644 KB
testcase_18 AC 62 ms
66,768 KB
testcase_19 AC 61 ms
67,524 KB
testcase_20 AC 61 ms
67,352 KB
testcase_21 AC 63 ms
66,760 KB
testcase_22 AC 132 ms
67,816 KB
testcase_23 AC 64 ms
68,168 KB
testcase_24 AC 70 ms
69,900 KB
testcase_25 TLE -
testcase_26 AC 68 ms
68,888 KB
testcase_27 WA -
testcase_28 AC 68 ms
69,392 KB
testcase_29 AC 66 ms
70,368 KB
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

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
l = []
for i in range(300000):
  st = set()
  temp = 0
  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