結果
問題 | No.481 1から10 |
ユーザー | plcherrim |
提出日時 | 2019-02-03 07:33:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,921 bytes |
コンパイル時間 | 1,695 ms |
コンパイル使用メモリ | 171,372 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 12:30:11 |
合計ジャッジ時間 | 2,438 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using vb=vector<bool>; using vvb=vector<vb>; using vd=vector<double>; using vvd=vector<vd>; using vi=vector<int>; using vvi=vector<vi>; using vl=vector<ll>; using vvl=vector<vl>; using pll=pair<ll,ll>; using tll=tuple<ll,ll>; using vs=vector<string>; #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define rep(i,n) range(i,0,n) #define range(i,a,n) for(ll i=(a);i<(n);i++) #define LINF ((ll)1ll<<60) #define INF ((int)1<<30) #define EPS (1e-9) #define MOD (1000000007ll) #define fcout(a) cout<<setprecision(a)<<fixed #define fs first #define sc second #define PI 3.1415926535897932384 int dx[]={1,0,-1,0,1,-1,-1,1},dy[]={0,1,0,-1,1,1,-1,-1}; template<class S,class T>ostream&operator<<(ostream&os,pair<S,T>p){os<<"["<<p.first<<", "<<p.second<<"]";return os;}; template<class S>auto&operator<<(ostream&os,vector<S>t){bool a=1; for(auto s:t){os<<(a?"":" ")<<s;a=0;} return os;} template<class S>void tf(bool b,S t,S f){cout<<(b?t:f)<<endl;} void OUT(bool b){tf(b,"YES","NO");} void Out(bool b){tf(b,"Yes","No");} void out(bool b){tf(b,"yes","no");} template<class T>void puta(T&&t){cout<<t<<endl;} template<class H,class...T>void puta(H&&h,T&&...t){cout<<h<<' ';puta(t...);} int popcnt(int x){return __builtin_popcount(x);} int popcnt(ll x){return __builtin_popcountll(x);} int bsr(int x){return 31 - __builtin_clz(x);} int bsr(ll x){return 63 - __builtin_clzll(x);} int bsf(int x){return __builtin_ctz(x);} int bsf(ll x){return __builtin_ctzll(x);} template<class T>bool chmax(T&a,T b){if(a<b){a=b; return true;}return false;} template<class T>bool chmin(T&a,T b){if(a>b){a=b; return true;}return false;} /*他のライブラリを入れる場所*/ int main(){ cin.tie(0); ios::sync_with_stdio(false); vi a(10),b(9),c; iota(all(a),1); rep(i,9)cin>>b[i]; set_difference(all(a),all(b),back_inserter(c)); puta(c); return 0; }