結果

問題 No.910 素数部分列
ユーザー mamekinmamekin
提出日時 2019-11-07 21:32:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 114,464 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-15 00:46:07
合計ジャッジ時間 2,709 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    int x1 = 0;
    int x9 = 0;
    for(int i=0; i<n; ++i){
        if(s[i] == '1'){
            ++ x1;
        }
        else if(s[i] == '9'){
            if(x1 > 0){
                -- x1;
                ++ ans;
            }
            else{
                ++ x9;
            }
        }
        else{
            ++ ans;
        }
    }
    ans += min(x9, x1 / 2);
    cout << ans << endl;

    return 0;
}
0