結果

問題 No.2779 Don't make Pair
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-06-03 00:31:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,112 KB
最終ジャッジ日時 2024-06-06 22:56:07
合計ジャッジ時間 2,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 52 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 33 ms
12,160 KB
testcase_10 AC 55 ms
19,416 KB
testcase_11 AC 36 ms
13,116 KB
testcase_12 AC 53 ms
17,204 KB
testcase_13 AC 55 ms
17,812 KB
testcase_14 AC 68 ms
18,820 KB
testcase_15 AC 74 ms
20,688 KB
testcase_16 AC 72 ms
21,224 KB
testcase_17 AC 86 ms
19,436 KB
testcase_18 AC 79 ms
18,888 KB
testcase_19 AC 71 ms
20,200 KB
testcase_20 AC 50 ms
16,496 KB
testcase_21 AC 76 ms
21,976 KB
testcase_22 AC 69 ms
21,848 KB
testcase_23 AC 138 ms
28,112 KB
testcase_24 AC 76 ms
21,852 KB
testcase_25 AC 77 ms
21,916 KB
testcase_26 AC 80 ms
21,956 KB
testcase_27 AC 88 ms
21,852 KB
testcase_28 AC 77 ms
21,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def main():
    n=int(input())
    a=read_list()
    ans = list()
    c = set()
    rc = set()
    for r in range(n):
        if a[r] in c:
            break
        c.add(a[r])
    for l in range(n - 1, -1, -1):
        if a[l] in rc:
            break
        rc.add(a[l])
    print(max(0,r-l))
    print(*range(l+1,max(l,r)+1))
        
if __name__ == "__main__":
    main()
0