結果
問題 | No.287 場合の数 |
ユーザー | batasanblog |
提出日時 | 2023-07-18 17:00:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,655 bytes |
コンパイル時間 | 4,305 ms |
コンパイル使用メモリ | 262,796 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-18 16:16:29 |
合計ジャッジ時間 | 5,448 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; //using mint = static_modint<998244353>; using mint = static_modint<1000000007>; ostream &operator<<(ostream &o,const mint &m){cout<<m.val();return o;} using ll = long long; using pl = pair<ll,ll>; using vl = vector<ll>; template<class T> using ve = vector<T>; template<class T> using vv = vector<ve<T>>; template<class T> using vvv = vector<vv<T>>; #define rep(i,n) for(ll i=0;i<(ll)(n);++i) #define reps(i,s,n) for(ll i=(s);i<(ll)(n);++i) #define rep1(i,n) for(ll i=1;i<=(ll)(n);++i) #define fi first #define se second #define pb push_back #define eb emplace_back #define be(v) (v).begin(),(v).end() const long long INF = 1e18; #ifdef DEBUG #include <debug.hpp> random_device rd; mt19937 gen(rd()); ll random(ll l,ll h){ uniform_int_distribution<ll> dist(l,h); return dist(gen); } #endif ll N; void input(){ cin>>N; } #ifdef DEBUG void showall(){ show(N); } #endif ll logic(){ vl f(N+1,1); rep(i,3){ f = convolution_ll(f,f); #ifdef DEBUG show("sz=",f.size(),f); #endif } return f.at(6*N); } #ifdef DEBUG ll naive(){ return 1; } #endif int main(){ input(); #ifdef DEBUG showall(); cout << "--- Logic ---" << endl; #endif ll ans=logic(); cout<<ans<<endl; //if(logic())cout<<"Yes"<<endl; //else cout<<"No"<<endl; //while(input())logic(); #ifdef DEBUG //show("naive=",naive()); #endif #ifdef DEBUG /* rep(q,100){ N=random(1LL,1000LL); showall(); ll lans=logic(),nans=naive(); if(lans!=nans){ show(" WA",lans,nans); break; } else{ show(" AC",lans,nans); } } */ #endif return 0; } //cout << fixed << setprecision(9);