結果
問題 | No.723 2つの数の和 |
ユーザー | batasanblog |
提出日時 | 2023-07-15 15:58:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 104 ms / 2,000 ms |
コード長 | 2,086 bytes |
コンパイル時間 | 3,911 ms |
コンパイル使用メモリ | 262,860 KB |
実行使用メモリ | 13,232 KB |
最終ジャッジ日時 | 2024-09-17 00:56:27 |
合計ジャッジ時間 | 7,078 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
12,328 KB |
testcase_01 | AC | 77 ms
12,324 KB |
testcase_02 | AC | 77 ms
12,320 KB |
testcase_03 | AC | 95 ms
12,868 KB |
testcase_04 | AC | 102 ms
13,056 KB |
testcase_05 | AC | 100 ms
12,988 KB |
testcase_06 | AC | 100 ms
13,020 KB |
testcase_07 | AC | 89 ms
12,636 KB |
testcase_08 | AC | 91 ms
12,672 KB |
testcase_09 | AC | 101 ms
13,076 KB |
testcase_10 | AC | 86 ms
12,612 KB |
testcase_11 | AC | 79 ms
12,356 KB |
testcase_12 | AC | 89 ms
12,732 KB |
testcase_13 | AC | 102 ms
13,104 KB |
testcase_14 | AC | 83 ms
12,512 KB |
testcase_15 | AC | 86 ms
12,620 KB |
testcase_16 | AC | 93 ms
12,936 KB |
testcase_17 | AC | 97 ms
13,092 KB |
testcase_18 | AC | 89 ms
13,232 KB |
testcase_19 | AC | 104 ms
13,104 KB |
testcase_20 | AC | 77 ms
12,328 KB |
testcase_21 | AC | 75 ms
12,328 KB |
testcase_22 | AC | 76 ms
12,324 KB |
testcase_23 | AC | 101 ms
13,108 KB |
testcase_24 | AC | 83 ms
12,552 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; //using mint = static_modint<998244353>; //using mint = modint; using mint = static_modint<1000000007>; using vm = vector<mint>; using vvm = vector<vm>; ostream &operator<<(ostream &o,const mint &m){cout<<m.val();return o;} using ll = long long; using vl = vector<ll>; using vvl = vector<vl>; using pl = pair<ll,ll>; using vp = vector<pl>; #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) template<typename T>inline bool chmax(T &a,T b){return a<b?a=b,true:false;} template<typename T>inline bool chmin(T &a,T b){return a>b?a=b,true:false;} #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 const ll MX=100001; ll N,X; vl A; void input(){ cin>>N>>X; A.assign(N,0); rep(n,N)cin>>A.at(n); } #ifdef DEBUG void showall(){ show(N,X); } #endif ll logic(){ vl v(MX,0); rep(n,N){ v.at(A.at(n))++; } vl w = convolution_ll(v,v); #ifdef DEBUG rep(i,v.size()){ if(v.at(i)>0)show(i,v.at(i)); } show("---"); rep(i,w.size()){ if(w.at(i)>0)show(i,w.at(i)); } #endif ll ans; if(X < w.size()) ans = w.at(X); else ans = 0; return ans; } #ifdef DEBUG ll naive(){ return 1; } #endif int main(){ #ifdef DEBUG cout << "--- Input ---" << endl; #endif input(); #ifdef DEBUG showall(); cout << "--- Logic ---" << endl; #endif ll ans=logic(); #ifdef DEBUG cout << "--- Answer ---" << endl; #endif cout<<ans<<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);