結果

問題 No.2779 Don't make Pair
ユーザー KudeKude
提出日時 2024-06-07 21:38:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 120,064 KB
最終ジャッジ日時 2024-06-07 21:38:17
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 34 ms
51,456 KB
testcase_04 AC 34 ms
51,328 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 34 ms
51,584 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 33 ms
51,712 KB
testcase_09 AC 45 ms
62,848 KB
testcase_10 AC 66 ms
79,360 KB
testcase_11 AC 49 ms
65,908 KB
testcase_12 AC 81 ms
91,776 KB
testcase_13 AC 80 ms
91,776 KB
testcase_14 AC 79 ms
88,204 KB
testcase_15 AC 109 ms
110,636 KB
testcase_16 AC 95 ms
108,544 KB
testcase_17 AC 104 ms
102,528 KB
testcase_18 AC 88 ms
95,744 KB
testcase_19 AC 100 ms
103,040 KB
testcase_20 AC 76 ms
84,152 KB
testcase_21 AC 106 ms
117,376 KB
testcase_22 AC 107 ms
116,864 KB
testcase_23 AC 141 ms
120,064 KB
testcase_24 AC 105 ms
116,864 KB
testcase_25 AC 107 ms
117,376 KB
testcase_26 AC 118 ms
120,064 KB
testcase_27 AC 124 ms
119,936 KB
testcase_28 AC 108 ms
116,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
ok = [True] * (n + 1)
for _ in range(2):
    now = True
    seen = set()
    for i in range(n):
        if a[i] in seen:
            now = False
        else:
            seen.add(a[i])
        ok[i+1] &= now
    a.reverse()
    ok.reverse()

ans = [j for j in range(1, n) if ok[j]]
print(len(ans))
print(*ans)
0