結果

問題 No.1053 ゲーミング棒
ユーザー chocono2230chocono2230
提出日時 2020-05-15 22:14:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 172,636 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-19 10:52:00
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main(){
  int n;
  cin >> n;
  map<int, int> mp;
  int mode = -1;
  int ans = 0;
  rep(i, n){
    int in;
    cin >> in;
    if(in != mode){
      mp[mode]++;
      if(mp[mode] == 2){
        ans++;
      }else if(mp[mode] > 2){
        cout << -1 << endl;
        return 0;
      }
      mode = in;
    }
  }
  mp[mode]++;
  if(mp[mode] == 2){
    ans++;
  }else if(mp[mode] > 2){
    cout << -1 << endl;
    return 0;
  }

  cout << ans << endl;
  return 0;
}
0