QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#670045#7779. Swiss Stagewdbl857AC ✓0ms3592kbC++201.0kb2024-10-23 20:19:422024-10-23 20:19:43

Judging History

你现在查看的是最新测评结果

  • [2024-10-23 20:19:43]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3592kb
  • [2024-10-23 20:19:42]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define ios ios::sync_with_stdio(0), cin.tie(0)
#define int long long
#define ll long long
#define int128 __int128
#define ull unsigned long long
#define endl "\n"
#define pi acos(-1)
#define pii pair<int, int>
const double eps = 1e-6;
const int N = 1e6 + 10, M = 1010, INF = 0x3f3f3f3f;
const int mod = 998244353;

void solve()
{
    int x, y;
    cin >> x >> y;
    if (x == 0)
    {
        if (y == 0)
            cout << 4;
        if (y == 1)
            cout << 4;
        if (y == 2)
            cout << 6;
    }
    else if (x == 1)
    {
        if (y == 0)
            cout << 3;
        if (y == 1)
            cout << 3;
        if (y == 2)
            cout << 4;
    }
    else
    {
        cout << 2;
    }
}
signed main()
{
    ios;
    int T = 1;
    // cout << fixed << setprecision(8);
    for (int i = 1; i <= T; i++)
    {
        // cout << "Case " << i << ": ";
        solve();
    }

    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3532kb

input:

0 1

output:

4

result:

ok 1 number(s): "4"

Test #2:

score: 0
Accepted
time: 0ms
memory: 3536kb

input:

1 2

output:

4

result:

ok 1 number(s): "4"

Test #3:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

0 0

output:

4

result:

ok 1 number(s): "4"

Test #4:

score: 0
Accepted
time: 0ms
memory: 3472kb

input:

0 2

output:

6

result:

ok 1 number(s): "6"

Test #5:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

1 0

output:

3

result:

ok 1 number(s): "3"

Test #6:

score: 0
Accepted
time: 0ms
memory: 3500kb

input:

1 1

output:

3

result:

ok 1 number(s): "3"

Test #7:

score: 0
Accepted
time: 0ms
memory: 3504kb

input:

2 0

output:

2

result:

ok 1 number(s): "2"

Test #8:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

2 1

output:

2

result:

ok 1 number(s): "2"

Test #9:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

2 2

output:

2

result:

ok 1 number(s): "2"

Extra Test:

score: 0
Extra Test Passed