結果
問題 | No.910 素数部分列 |
ユーザー |
|
提出日時 | 2019-11-07 21:34:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,024 bytes |
コンパイル時間 | 989 ms |
コンパイル使用メモリ | 115,512 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 00:46:10 |
合計ジャッジ時間 | 2,611 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 WA * 42 |
ソースコード
#define _USE_MATH_DEFINES#include <cstdio>#include <iostream>#include <sstream>#include <fstream>#include <iomanip>#include <algorithm>#include <cmath>#include <complex>#include <string>#include <vector>#include <array>#include <list>#include <queue>#include <stack>#include <set>#include <map>#include <bitset>#include <numeric>#include <limits>#include <climits>#include <cfloat>#include <functional>#include <iterator>#include <memory>#include <regex>using namespace std;int main(){int n;string s;cin >> n >> s;int ans = 0;bool x1 = false;for(int i=0; i<n; ++i){if(s[i] == '1'){if(x1){x1 = false;++ ans;}else{x1 = true;}}else if(s[i] == '9'){if(x1){x1 = false;++ ans;}}else{++ ans;}}cout << ans << endl;return 0;}