Submission #23956808


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

int main() {
    int a, b;
    cin >> a >> b;
    if (a <= b && a*6 >= b) cout << "Yes" << endl;
    else cout << "No" << endl;

    return 0;
}

Submission Info

Submission Time
Task A - Rolling Dice
User Polarnight
Language C++ (GCC 9.2.1)
Score 100
Code Size 201 Byte
Status AC
Exec Time 8 ms
Memory 3600 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 9
Set Name Test Cases
Sample sample_00.txt, sample_01.txt, sample_02.txt
All bound_00.txt, bound_01.txt, bound_02.txt, bound_03.txt, random_00.txt, random_01.txt, sample_00.txt, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
bound_00.txt AC 8 ms 3600 KiB
bound_01.txt AC 2 ms 3600 KiB
bound_02.txt AC 2 ms 3600 KiB
bound_03.txt AC 2 ms 3528 KiB
random_00.txt AC 2 ms 3596 KiB
random_01.txt AC 7 ms 3524 KiB
sample_00.txt AC 3 ms 3528 KiB
sample_01.txt AC 2 ms 3396 KiB
sample_02.txt AC 2 ms 3448 KiB