結果

問題 No.241 出席番号(1)
ユーザー roiti46roiti46
提出日時 2015-07-10 22:52:40
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 889 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-08 02:03:52
合計ジャッジ時間 1,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
A = [int(raw_input()) for i in xrange(N)]

if N == 1:
        if A[0] == 0:
                print -1
        else:
                print 0
        exit()

hist = [0] * 50
for a in A:
        hist[a] += 1

if N in hist:
        print -1
        exit()

priority = sorted([[h, i] for i, h in enumerate(hist[:N])], reverse = True)
used = [False] * N
ans = [-1] * N
for h, i in priority:
        for j in xrange(N):
                if A[j] != i and not used[j]:
                        ans[j] = i
                        used[j] = True
                        break
        else:
                for j in xrange(N):
                        if not used[j]:
                                ans[j] = i
                                used[j] = True
                                break

if -1 not in ans:
        for a in ans:
                print a
else:
        print -1
0