結果

問題 No.632 穴埋め門松列
ユーザー tonegawatonegawa
提出日時 2020-08-10 23:08:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,248 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 95,296 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 19:44:21
合計ジャッジ時間 1,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <algorithm>
#include <set>
#include <map>
#include <bitset>
#include <cmath>
#include <functional>
#include <iomanip>
#define vll vector<ll>
#define vvvl vector<vvl>
#define vvl vector<vector<ll>>
#define VV(a, b, c, d) vector<vector<d>>(a, vector<d>(b, c))
#define VVV(a, b, c, d) vector<vvl>(a, vvl(b, vll (c, d)));
#define re(c, b) for(ll c=0;c<b;c++)
#define all(obj) (obj).begin(), (obj).end()
typedef long long int ll;
typedef long double ld;
using namespace std;

bool check(ll a, ll b, ll c){
  if(b==max({a, b, c})||b==min({a, b, c})) return true;
  return false;
}
int main(int argc, char const *argv[]) {
  vector<char> v(3);re(i, 3) std::cin >> v[i];
  ll num = -1;
  for(int i=0;i<3;i++) if(v[i]=='?') num = i;
  bool f, g;
  if(num==0){
    f = check(1, v[1] - '0' , v[2] - '0');
    g = check(4, v[1] - '0' , v[2] - '0');
  }else if(num==1){
    f = check(v[0]-'0', 1 , v[2] - '0');
    g = check(v[0]-'0', 4 , v[2] - '0');
  }else{
    f = check(v[0]-'0', v[1]- '0', 1);
    g = check(v[0]-'0', v[1]-'0' , 4);
  }

  if(f&&g) std::cout << "14" << '\n';
  else if(f) std::cout << "1" << '\n';
  else if(g) std::cout << "4" << '\n';
}
0