結果

問題 No.241 出席番号(1)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-10 22:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,549 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 78,204 KB
最終ジャッジ日時 2024-09-27 20:22:13
合計ジャッジ時間 7,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,216 KB
testcase_01 AC 44 ms
62,380 KB
testcase_02 AC 46 ms
62,664 KB
testcase_03 AC 47 ms
62,040 KB
testcase_04 AC 46 ms
63,084 KB
testcase_05 AC 47 ms
62,712 KB
testcase_06 AC 45 ms
63,216 KB
testcase_07 AC 45 ms
63,416 KB
testcase_08 AC 46 ms
62,284 KB
testcase_09 AC 48 ms
62,992 KB
testcase_10 AC 45 ms
62,248 KB
testcase_11 AC 1,548 ms
77,948 KB
testcase_12 AC 47 ms
61,692 KB
testcase_13 AC 46 ms
62,444 KB
testcase_14 AC 48 ms
62,448 KB
testcase_15 AC 49 ms
62,648 KB
testcase_16 AC 1,549 ms
77,544 KB
testcase_17 AC 46 ms
61,704 KB
testcase_18 AC 46 ms
61,900 KB
testcase_19 AC 45 ms
63,116 KB
testcase_20 AC 46 ms
62,048 KB
testcase_21 AC 44 ms
61,820 KB
testcase_22 AC 45 ms
62,700 KB
testcase_23 AC 45 ms
62,848 KB
testcase_24 AC 50 ms
65,588 KB
testcase_25 AC 58 ms
67,660 KB
testcase_26 AC 46 ms
62,276 KB
testcase_27 AC 1,545 ms
78,204 KB
testcase_28 AC 48 ms
62,844 KB
testcase_29 AC 46 ms
62,664 KB
testcase_30 AC 57 ms
67,640 KB
testcase_31 AC 46 ms
62,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline
import random,time
start = time.time()

N = int(input())
A = [int(input()) for _ in range(N)]
B = [i for i in range(N)]
while time.time()-start < 1.5:
    if any(A[i]==B[i] for i in range(N)):
        random.shuffle(B)
        continue
    else:
        print(*B,sep='\n')
        exit()
print(-1)

    
0