結果

問題 No.1410 A lot of Bit Operations
ユーザー chocoruskchocorusk
提出日時 2021-02-26 22:42:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,107 bytes
コンパイル時間 5,712 ms
コンパイル使用メモリ 181,388 KB
最終ジャッジ日時 2025-01-19 06:10:20
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint1000000007;
int main()
{
    ll n; cin>>n;
    string k; cin>>k;
    mint ans=0;
    for(int i=0; i<8; i++){
        if(k[i]=='o'){
            if(n==0){
                ans+=1;
                continue;
            }
            ans+=mint(2).pow(3*n);
            mint z=mint(2).pow(3*n)-mint(2).pow(2*n+1);
            int t=1;
            for(int j=0; j<3; j++) if(!(i&(1<<j))) t++;
            ans-=z*mint(t)*mint(4-t)/mint(8);
        }
    }
    cout<<ans.val()<<endl;
    return 0;
}
0