Submission #64091143


Source Code Expand

Copy
#include <bits/stdc++.h>
#define endl '\n'
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
#define result cout << answer << endl
#define all(v) v.begin(), v.end()
#define full(a) a, a + (sizeof(a) / sizeof(a[0]))
#define printV(v) for (auto &x : v) cout << x << " "; cout << endl
using namespace std;
using ll = long long;
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll cards[7];
unordered_map<ll, ll> cardCount;
bool two = false, three = false;
for (ll &x : cards) {
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
#define endl '\n'
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
#define result cout << answer << endl
#define all(v) v.begin(), v.end()
#define full(a) a, a + (sizeof(a) / sizeof(a[0]))
#define printV(v) for (auto &x : v) cout << x << " "; cout << endl

using namespace std;
using ll = long long;

int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    ll cards[7];
    unordered_map<ll, ll> cardCount;
    bool two = false, three = false;

    for (ll &x : cards) {
        cin >> x;
        cardCount[x]++;
    }
    
    for (const auto &x : cardCount) {
        if (x.second >= 3 && !three) {
            three = true;
        } else if (x.second >= 2) {
            two = true;
        }
    }

    if (three && two) {
        cout << "Yes";
    } else {
        cout << "No";
    }

    return 0;
}

Submission Info

Submission Time
Task B - Full House 3
User MubtasimSajid
Language C++ 20 (gcc 12.2)
Score 250
Code Size 911 Byte
Status AC
Exec Time 1 ms
Memory 3656 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 250 / 250
Status
AC × 4
AC × 34
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt
All hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, sample_01.txt, sample_02.txt, sample_03.txt, sample_04.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, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt
Case Name Status Exec Time Memory
hand_01.txt AC 1 ms 3516 KB
hand_02.txt AC 1 ms 3448 KB
hand_03.txt AC 1 ms 3528 KB
hand_04.txt AC 1 ms 3448 KB
sample_01.txt AC 1 ms 3508 KB
sample_02.txt AC 1 ms 3532 KB
sample_03.txt AC 1 ms 3448 KB
sample_04.txt AC 1 ms 3420 KB
test_01.txt AC 1 ms 3528 KB
test_02.txt AC 1 ms 3536 KB
test_03.txt AC 1 ms 3528 KB
test_04.txt AC 1 ms 3528 KB
test_05.txt AC 1 ms 3596 KB
test_06.txt AC 1 ms 3516 KB
test_07.txt AC 1 ms 3460 KB
test_08.txt AC 1 ms 3504 KB
test_09.txt AC 1 ms 3424 KB
test_10.txt AC 1 ms 3456 KB
test_11.txt AC 1 ms 3528 KB
test_12.txt AC 1 ms 3616 KB
test_13.txt AC 1 ms 3448 KB
test_14.txt AC 1 ms 3612 KB
test_15.txt AC 1 ms 3592 KB
test_16.txt AC 1 ms 3600 KB
test_17.txt AC 1 ms 3648 KB
test_18.txt AC 1 ms 3408 KB
test_19.txt AC 1 ms 3656 KB
test_20.txt AC 1 ms 3464 KB
test_21.txt AC 1 ms 3464 KB
test_22.txt AC 1 ms 3536 KB
test_23.txt AC 1 ms 3524 KB
test_24.txt AC 1 ms 3400 KB
test_25.txt AC 1 ms 3420 KB
test_26.txt AC 1 ms 3616 KB


2025-04-03 (Thu)
17:59:52 +00:00