結果
問題 | No.785 色食い虫 |
ユーザー | saki0080 |
提出日時 | 2021-02-06 17:08:00 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,311 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 193,472 KB |
最終ジャッジ日時 | 2025-01-18 13:36:34 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define rep(i, a) for (int i = 0; i < (int)(a); i++)#define sz(x) (int)(x).size()#define pcnt __builtin_popcountlltypedef long long ll;template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,sz(v))i>>v[j];return i;}template<typename T>string join(const vector<T>&v){stringstream s;rep(i,sz(v))s<<' '<<v[i];return s.str().substr(1);}template<typename T>ostream& operator<<(ostream&o,const vector<T>&v){if(sz(v))o<<join(v);return o;}template<typename T1,typename T2>istream& operator>>(istream&i,pair<T1,T2>&v){return i>>v.first>>v.second;}template<typename T1,typename T2>ostream& operator<<(ostream&o,const pair<T1,T2>&v){return o<<v.first<<","<<v.second;}template<typename T>bool mins(T& x,const T&y){if(x>y){x=y;return true;}else return false;}template<typename T>bool maxs(T& x,const T&y){if(x<y){x=y;return true;}else return false;}template<typename T>ll suma(const vector<T>&a){ll res(0);for(auto&&x:a)res+=x;return res;}#ifdef _DEBUGinline void dump() { cerr << endl; }template <typename Head> void dump(Head &&head) { cerr << head; dump(); }template <typename Head, typename... Tail> void dump(Head &&head, Tail &&... tail) { cerr << head << ", "; dump(forward<Tail>(tail)...); }#define debug(...) do { cerr << __LINE__ << ":\t" << #__VA_ARGS__ << " = "; dump(__VA_ARGS__); } while (false)#else#define dump(...)#define debug(...)#endiftemplate <typename T> struct edge {int src, to;T cost;edge(int to, T cost) : src(-1), to(to), cost(cost) {}edge(int src, int to, T cost) : src(src), to(to), cost(cost) {}edge &operator=(const int &x) {to = x;return *this;}operator int() const { return to; }};template <typename T> using Edges = vector<edge<T>>;template <typename T> using WeightedGraph = vector<Edges<T>>;using UnWeightedGraph = vector<vector<int>>;template <typename T> using Matrix = vector<vector<T>>;const ll LINF = 1LL << 62;const int INF = 1001001001;/////////////////////////////////////////////////////////////////////int main(){string s,t,u; cin>>s>>t>>u;int a = 16;int b = 16;int c = 16;if (s != "NONE") a -= (s.size()+1)/2;if (t != "NONE") b -= (t.size()+1)/2;if (u != "NONE") c -= (u.size()+1)/2;cout << a*a*b*b*c*c << "\n";return 0;}