Submission #61146196


Source Code Expand

Copy
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using vl = vector<long long>;
using vs = vector<string>;
using vc = vector<char>;
using vb = vector<bool>;
using pii = pair<int, int>;
using pll = pair<long long, long long>;
using vpii = vector<pair<int, int>>;
using vpll = vector<pair<long long, long long>>;
using vvi = vector<vector<int>>;
using vvl = vector<vector<long long>>;
using vvc = vector<vector<char>>;
using vvb = vector<vector<bool>>;
using vvvi = vector<vector<vector<int>>>;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(), (x).end()
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using vi = vector<int>;
using vl = vector<long long>;
using vs = vector<string>;
using vc = vector<char>;
using vb = vector<bool>;
using pii = pair<int, int>;
using pll = pair<long long, long long>;
using vpii = vector<pair<int, int>>;
using vpll = vector<pair<long long, long long>>;
using vvi = vector<vector<int>>;
using vvl = vector<vector<long long>>;
using vvc = vector<vector<char>>;
using vvb = vector<vector<bool>>;
using vvvi = vector<vector<vector<int>>>;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(), (x).end()

#define INFTY (1 << 30)
#define EPS (1e-7)
#define equal(a, b) (fabs((a) - (b)) < EPS)

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));
}

int main()
{
  int a, b, c, d;
  cin >> a >> b >> c >> d;

  int count = 1;
  if (b != a)
  {
    count += 1;
  }
  if (c != a && c != b)
  {
    count += 1;
  }
  if (d != a && d != b && d != c)
  {
    count += 1;
  }

  if (count == 2)
  {
    cout << "Yes" << endl;
  }
  else
  {
    cout << "No" << endl;
  }
  return 0;
}

Submission Info

Submission Time
Task A - Full House 2
User pika2
Language C++ 23 (gcc 12.2)
Score 100
Code Size 1315 Byte
Status AC
Exec Time 1 ms
Memory 3652 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 5
AC × 25
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, sample_05.txt
All sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, sample_05.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 3448 KB
sample_02.txt AC 1 ms 3568 KB
sample_03.txt AC 1 ms 3440 KB
sample_04.txt AC 1 ms 3464 KB
sample_05.txt AC 1 ms 3460 KB
test_01.txt AC 1 ms 3496 KB
test_02.txt AC 1 ms 3376 KB
test_03.txt AC 1 ms 3648 KB
test_04.txt AC 1 ms 3492 KB
test_05.txt AC 1 ms 3500 KB
test_06.txt AC 1 ms 3452 KB
test_07.txt AC 1 ms 3440 KB
test_08.txt AC 1 ms 3452 KB
test_09.txt AC 1 ms 3496 KB
test_10.txt AC 1 ms 3372 KB
test_11.txt AC 1 ms 3472 KB
test_12.txt AC 1 ms 3648 KB
test_13.txt AC 1 ms 3556 KB
test_14.txt AC 1 ms 3448 KB
test_15.txt AC 1 ms 3368 KB
test_16.txt AC 1 ms 3456 KB
test_17.txt AC 1 ms 3452 KB
test_18.txt AC 1 ms 3652 KB
test_19.txt AC 1 ms 3440 KB
test_20.txt AC 1 ms 3456 KB


2025-03-31 (Mon)
19:15:35 +00:00