結果

問題 No.1053 ゲーミング棒
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-05-15 22:04:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 175,652 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-09-19 10:36:36
合計ジャッジ時間 2,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 61 ms
8,320 KB
testcase_24 AC 63 ms
8,320 KB
testcase_25 AC 65 ms
8,320 KB
testcase_26 AC 45 ms
6,944 KB
testcase_27 WA -
testcase_28 AC 1 ms
6,940 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 15 ms
6,944 KB
testcase_32 AC 15 ms
6,944 KB
testcase_33 AC 15 ms
6,944 KB
testcase_34 AC 15 ms
6,940 KB
testcase_35 AC 20 ms
6,944 KB
testcase_36 AC 21 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;


int main()
{
    int n; cin >> n;vector<int> a(n); for(int i = 0; i < n; i++)cin >> a[i];
    a.erase(unique(a.begin(), a.end()), a.end());
    n = a.size();
    set<int> st;
    st.insert(a[0]);
    st.insert(a[n - 1]);
    for(int i = 1; i < n - 1; i++) {
        if(st.count(a[i])) {
            cout << -1 << endl;
            return 0;
        } else {
            st.insert(a[i]);
        }
    }

    if(a.front() == a.back()) {
        cout << 1 << endl;
    } else {
        cout << 0 << endl;
    }
}
0