結果

問題 No.2779 Don't make Pair
ユーザー xrつぼxrつぼ
提出日時 2024-06-12 13:56:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 976 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,808 KB
最終ジャッジ日時 2024-06-12 13:56:52
合計ジャッジ時間 3,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 RE -
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 RE -
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 29 ms
12,160 KB
testcase_10 AC 48 ms
19,484 KB
testcase_11 AC 33 ms
13,444 KB
testcase_12 AC 73 ms
21,796 KB
testcase_13 AC 72 ms
21,900 KB
testcase_14 AC 68 ms
18,164 KB
testcase_15 AC 102 ms
25,924 KB
testcase_16 AC 126 ms
26,568 KB
testcase_17 AC 99 ms
23,476 KB
testcase_18 AC 84 ms
20,144 KB
testcase_19 AC 95 ms
24,500 KB
testcase_20 AC 57 ms
17,384 KB
testcase_21 AC 133 ms
33,468 KB
testcase_22 AC 135 ms
33,408 KB
testcase_23 AC 170 ms
34,808 KB
testcase_24 AC 133 ms
33,404 KB
testcase_25 RE -
testcase_26 AC 134 ms
33,324 KB
testcase_27 AC 138 ms
33,440 KB
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def union(tap_1, tap_2):
    if tap_1[0] < tap_2[0]:
        s, t = tap_1, tap_2
    else:
        s, t = tap_2, tap_1
    
    if s[1] < t[0]:
        return False
    elif s[1] > t[0] and s[1] < t[1]:
        return [t[0], s[1]]
    elif s[1] > t[1]:
        return [t[0], t[1]]
    
n = int(input())
a = list(map(int, input().split()))

d = dict() #{数字:[場所]}
d_keys = [] #2回出てきた数字
flag = True
for i in range(n):
    n_i = a[i]
    if n_i in d:
        d[n_i].append(i)
        if len(d[n_i]) == 3:
            print(0)
            print("")
            break
        elif len(d[n_i]) == 2:
            d_keys.append(n_i)
    else: d[n_i] = [i]
else:
    res = [0, n-1]
    for k in d_keys:
        if res == False:
            print(0)
            print("")
            break
        else:
            res = union(res, d[k])
    else:
        res = [res[0]+1, res[1]]
        print(res[1]-res[0]+1)
        print(*[n for n in range(res[0], res[1]+1)])
0