結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 35 ms
12,032 KB
testcase_10 AC 57 ms
19,408 KB
testcase_11 AC 38 ms
13,240 KB
testcase_12 AC 55 ms
17,328 KB
testcase_13 AC 58 ms
17,940 KB
testcase_14 AC 70 ms
18,812 KB
testcase_15 AC 78 ms
20,296 KB
testcase_16 AC 78 ms
21,100 KB
testcase_17 AC 119 ms
19,372 KB
testcase_18 AC 82 ms
19,032 KB
testcase_19 AC 73 ms
20,448 KB
testcase_20 AC 51 ms
16,492 KB
testcase_21 AC 80 ms
21,864 KB
testcase_22 AC 71 ms
21,836 KB
testcase_23 AC 143 ms
27,932 KB
testcase_24 AC 78 ms
21,972 KB
testcase_25 AC 77 ms
21,972 KB
testcase_26 AC 85 ms
21,916 KB
testcase_27 AC 90 ms
21,916 KB
testcase_28 AC 80 ms
21,824 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()
    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,r+1))
        
if __name__ == "__main__":
    main()
0