結果

問題 No.241 出席番号(1)
ユーザー burita083burita083
提出日時 2021-06-17 02:15:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 83,212 KB
最終ジャッジ日時 2025-01-01 18:17:30
合計ジャッジ時間 15,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
66,764 KB
testcase_01 AC 52 ms
67,644 KB
testcase_02 AC 52 ms
67,708 KB
testcase_03 AC 51 ms
66,864 KB
testcase_04 AC 57 ms
69,428 KB
testcase_05 AC 52 ms
66,084 KB
testcase_06 AC 49 ms
66,968 KB
testcase_07 AC 50 ms
66,840 KB
testcase_08 AC 51 ms
67,216 KB
testcase_09 AC 50 ms
66,636 KB
testcase_10 WA -
testcase_11 AC 872 ms
79,592 KB
testcase_12 AC 51 ms
67,508 KB
testcase_13 AC 50 ms
67,068 KB
testcase_14 AC 54 ms
70,696 KB
testcase_15 AC 53 ms
69,544 KB
testcase_16 AC 51 ms
76,616 KB
testcase_17 AC 49 ms
66,488 KB
testcase_18 AC 49 ms
66,808 KB
testcase_19 AC 50 ms
67,160 KB
testcase_20 AC 50 ms
67,840 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 55 ms
69,612 KB
testcase_24 AC 54 ms
69,140 KB
testcase_25 TLE -
testcase_26 AC 60 ms
69,780 KB
testcase_27 AC 1,474 ms
80,976 KB
testcase_28 AC 56 ms
70,500 KB
testcase_29 AC 55 ms
70,584 KB
testcase_30 AC 56 ms
70,836 KB
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
for i in range(400000):
  st = set()
  temp = 0
  l = []
  tp = dp[:]
  for idx, d in enumerate(tp):
    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