Submission #1839357


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
const int a[7] = {1,3,5,7,8,10,12};
const int b[4] = {4,6,9,11};
 
bool check(const int *a,int N,int key){
    for(int i=0;i<N;i++){
        if(key==a[i])return true;
    }
    return false;
}
 
int main(){
    int x,y;
    cin >> x >> y;
    if(x==2&y==2){
        cout << "Yes" << endl;
    }else if(check(&a[0],7,x)&&check(&a[0],7,y)){
        cout << "Yes" << endl;
    }else if(check(&b[0],4,x)&&check(&b[0],4,y)){
        cout << "Yes" << endl;
    }else{
        cout << "No" << endl;
    }
    
    return 0;
}

Submission Info

Submission Time
Task A - Grouping
User loto610
Language C++14 (GCC 5.4.1)
Score 100
Code Size 589 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 7
Set Name Test Cases
Sample 0_00.txt, 0_01.txt
All 0_00.txt, 0_01.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt AC 1 ms 256 KB