結果

問題 No.910 素数部分列
ユーザー Jiro_tech15Jiro_tech15
提出日時 2019-10-18 21:43:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 10 ms / 1,000 ms
コード長 2,997 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 86,504 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-08 04:08:11
合計ジャッジ時間 3,166 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 9 ms
4,380 KB
testcase_24 AC 9 ms
4,376 KB
testcase_25 AC 9 ms
4,376 KB
testcase_26 AC 9 ms
4,380 KB
testcase_27 AC 9 ms
4,380 KB
testcase_28 AC 9 ms
4,376 KB
testcase_29 AC 10 ms
4,384 KB
testcase_30 AC 10 ms
4,376 KB
testcase_31 AC 10 ms
4,376 KB
testcase_32 AC 10 ms
4,376 KB
testcase_33 AC 10 ms
4,376 KB
testcase_34 AC 10 ms
4,380 KB
testcase_35 AC 9 ms
4,380 KB
testcase_36 AC 9 ms
4,376 KB
testcase_37 AC 9 ms
4,380 KB
testcase_38 AC 9 ms
4,380 KB
testcase_39 AC 9 ms
4,380 KB
testcase_40 AC 8 ms
4,376 KB
testcase_41 AC 9 ms
4,376 KB
testcase_42 AC 8 ms
4,376 KB
testcase_43 AC 8 ms
4,380 KB
testcase_44 AC 8 ms
4,376 KB
testcase_45 AC 8 ms
4,376 KB
testcase_46 AC 9 ms
4,376 KB
testcase_47 AC 9 ms
4,376 KB
testcase_48 AC 6 ms
4,376 KB
testcase_49 AC 6 ms
4,380 KB
testcase_50 AC 6 ms
4,376 KB
testcase_51 AC 6 ms
4,376 KB
testcase_52 AC 7 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <string>
#include <math.h>
#include <iomanip>
#include <limits>
#include <list>
#include <queue>
#include <tuple>
#include <map>
#include <stack>
#include <set>
using namespace std;
#define MOD (long long int)(1e9+7)
#define ll long long int
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define reps(i,n) for(int i=1; i<=(int)(n); i++)
#define REP(i,n) for(int i=n-1; i>=0; i--)
#define REPS(i,n) for(int i=n; i>0; i--)
#define INF (int)(1123456789)
#define LINF (long long int)(1e18+1)
#define chmax(a, b) a = (((a)<(b)) ? (b) : (a))
#define chmin(a, b) a = (((a)>(b)) ? (b) : (a))
#define all(v) v.begin(), v.end()

const int N = (int)3e5;

ll mpow(ll a, ll b){
  if(b==0) return 1;
  else if(b%2==0){ll memo = mpow(a,b/2); return memo*memo%MOD;}
  else return mpow(a,b-1) * a % MOD;
}
ll lpow(ll a, ll b){
  if(b==0) return 1;
  else if(b%2==0){ll memo = lpow(a,b/2); return memo*memo;}
  else return lpow(a,b-1) * a;
}
ll gcd(ll a, ll b){
  if(b==0) return a;
  else return gcd(b, a%b);
}
vector<ll> kaijo_memo;
ll kaijo(ll n){
  if(kaijo_memo.size() > n) return kaijo_memo[n];
  if(kaijo_memo.size() == 0) kaijo_memo.push_back(1);
  while(kaijo_memo.size() <= n) kaijo_memo.push_back(kaijo_memo[kaijo_memo.size()-1] * kaijo_memo.size() % MOD);
  return kaijo_memo[n];
}
vector<ll> gyaku_kaijo_memo;
ll gyaku_kaijo(ll n){
  if(gyaku_kaijo_memo.size() > n) return gyaku_kaijo_memo[n];
  if(gyaku_kaijo_memo.size() == 0) gyaku_kaijo_memo.push_back(1);
  while(gyaku_kaijo_memo.size() <= n) gyaku_kaijo_memo.push_back(gyaku_kaijo_memo[gyaku_kaijo_memo.size()-1] * mpow(gyaku_kaijo_memo.size(), MOD-2) % MOD);
  return gyaku_kaijo_memo[n];
}

ll nCr(ll n, ll r){
  if(n == r) return 1;//0個の丸と-1個の棒みたいな時に時に効く?不安.
  if(n < r || r < 0) return 0;
  ll ret = 1;
  ret *= kaijo(n); ret %= MOD;
  ret *= gyaku_kaijo(r); ret %= MOD;
  ret *= gyaku_kaijo(n-r); ret %= MOD;
  return ret;
}


int main(void){
  int n;cin>>n;
  string s;cin>>s;
  ll ans = 0,one = 0, nine = 0;
  rep(i,n){
    if(s[i] == '3' || s[i] == '5' || s[i] == '7'){
      ans++;
    }else{
      if(s[i] == '1'){
        one++;
      }else{
        nine++;
      }
    }
  }
  int count = 0;
  int l=0,r=1;
  while(l<n){
    while(l<n && s[l] != '1') l++;
    if(l==n) break;
    chmax(r,l+1);
    while(r<n && s[r] != '9') r++;
    if(r==n) break;
    ans++;
    s[l] = '0';
    count++;
    one--;
    l++;
    r++;
  }
  r = n-1;
  while(count > 0){
    if(s[r] == '9'){
      s[r] = '0';
      count--;
    }
    r--;
  }
  int l0=0,l1=1;r=2;
  while(l1<n){
    while(l0<n && s[l0]!='9') l0++;
    if(l0==n) break;
    l1 = l0+1;
    while(l1<n && s[l1]!='9') l1++;
    if(l1==n) break;
    chmax(r, l1+1);
    while(r<n && s[r] != '1') r++;
    if(r==n) break;
    ans++;
    s[l0] = '0';
    s[l1] = '0';
    s[r] = '0';
    one--;
    l0 = l1+1;
  }
  ans += one/2;
  cout<<ans<<endl;
  return 0;
}
0