結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 RE -
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 31 ms
12,288 KB
testcase_10 AC 51 ms
19,616 KB
testcase_11 AC 40 ms
13,320 KB
testcase_12 AC 74 ms
21,912 KB
testcase_13 AC 78 ms
21,984 KB
testcase_14 AC 69 ms
18,168 KB
testcase_15 AC 112 ms
25,936 KB
testcase_16 AC 104 ms
26,580 KB
testcase_17 AC 98 ms
23,356 KB
testcase_18 AC 84 ms
20,280 KB
testcase_19 AC 96 ms
24,452 KB
testcase_20 AC 56 ms
17,400 KB
testcase_21 AC 132 ms
33,360 KB
testcase_22 AC 158 ms
33,216 KB
testcase_23 AC 167 ms
34,848 KB
testcase_24 AC 130 ms
33,276 KB
testcase_25 AC 142 ms
33,212 KB
testcase_26 AC 130 ms
33,212 KB
testcase_27 AC 136 ms
33,220 KB
testcase_28 AC 133 ms
33,188 KB
権限があれば一括ダウンロードができます

ソースコード

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:
        if res == False:
            print(0)
            print("")
        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