結果
問題 | No.921 ずんだアロー |
ユーザー | ZacCrYmxf888I5q |
提出日時 | 2019-11-19 00:31:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 1,576 ms |
コンパイル使用メモリ | 171,544 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 03:35:36 |
合計ジャッジ時間 | 3,501 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 27 ms
6,816 KB |
testcase_11 | AC | 28 ms
6,816 KB |
testcase_12 | AC | 8 ms
6,816 KB |
testcase_13 | AC | 21 ms
6,816 KB |
testcase_14 | AC | 24 ms
6,820 KB |
testcase_15 | AC | 16 ms
6,816 KB |
testcase_16 | AC | 4 ms
6,820 KB |
testcase_17 | AC | 25 ms
6,816 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 28 ms
6,816 KB |
testcase_24 | AC | 29 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=1;i<=n;i++) int main(){ int n,sum=0; cin >> n; vector<tuple<int,int>> moti(n+2); rep(i,n){ cin >> get<0>(moti.at(i)); get<1>(moti.at(i)) = 1; } get<1>(moti.at(0))=get<1>(moti.at(n+1))=1; for(int i=1;i<=n-1;i++){ if(get<0>(moti.at(i))==get<0>(moti.at(i+1))) get<1>(moti.at(i))=get<1>(moti.at(i+1))=0; } for(int i=0;i<=n-1;i++){ if(get<1>(moti.at(i))*get<1>(moti.at(i+1))*get<1>(moti.at(i+2))) get<1>(moti.at(i+1)) = 0; } for(int i=1;i<=n;i++){ sum += get<1>(moti.at(i)); } cout << n-sum << endl; return 0; }