結果
問題 | No.2779 Don't make Pair |
ユーザー | いまり💣🍠 |
提出日時 | 2024-06-07 22:30:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 501 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 88,832 KB |
最終ジャッジ日時 | 2024-06-07 22:30:51 |
合計ジャッジ時間 | 8,241 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
57,088 KB |
testcase_01 | AC | 40 ms
51,712 KB |
testcase_02 | AC | 39 ms
51,840 KB |
testcase_03 | AC | 38 ms
51,840 KB |
testcase_04 | AC | 35 ms
51,968 KB |
testcase_05 | AC | 34 ms
51,840 KB |
testcase_06 | AC | 34 ms
51,840 KB |
testcase_07 | WA | - |
testcase_08 | AC | 34 ms
51,968 KB |
testcase_09 | AC | 41 ms
60,928 KB |
testcase_10 | AC | 58 ms
76,416 KB |
testcase_11 | AC | 45 ms
63,488 KB |
testcase_12 | AC | 1,101 ms
79,104 KB |
testcase_13 | WA | - |
testcase_14 | AC | 534 ms
82,432 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,113 ms
84,864 KB |
testcase_17 | AC | 1,510 ms
88,832 KB |
testcase_18 | AC | 921 ms
87,296 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 497 ms
75,904 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
N = int(input()) A = list(map(int, input().split())) found_num = [] j_list = [] j = 0 while j < N - 1: if A[j] in found_num: break else: found_num.append(A[j]) j_list.append(j + 1) j += 1 found_num2 = [] while j < N: if A[j] in found_num: index = found_num.index(A[j]) j_list = j_list[index:] if A[j] in found_num2: j_list = [] break else: found_num2.append(A[j]) j += 1 print(len(j_list)) print(*j_list)