QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#127615#6696. Three Dicemoon_095AC ✓1ms3604kbC++171.0kb2023-07-19 20:40:502023-07-19 20:40:52

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-19 20:40:52]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3604kb
  • [2023-07-19 20:40:50]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;
#define endl '\n'
// #define int long long

long long M = 998244353;
typedef long long LL;
typedef pair<int, int> PII;
set<int> S1[4], S2[4];
int n;
void solve() {
	int a, b;
	cin >> a >> b;
	S1[0].insert(0);
	S1[1].insert(1);
	S1[1].insert(4);
	S1[2].insert(2);
	S1[2].insert(5);
	S1[2].insert(8);
	S1[3].insert(3);
	S1[3].insert(6);
	S1[3].insert(9);
	S1[3].insert(12);

	S2[0].insert(0);
	S2[1].insert(2);
	S2[1].insert(3);
	S2[1].insert(5);
	S2[1].insert(6);
	S2[2].insert(4);
	S2[2].insert(5);
	S2[2].insert(6);
	S2[2].insert(7);
	S2[2].insert(8);
	S2[2].insert(9);
	S2[2].insert(10);
	S2[2].insert(11);
	S2[2].insert(12);
	for(int i = 6; i <= 18; i++) S2[3].insert(i);

	for(int i = 0; i <= 3; i++) {
		int j = 3 - i;
		if(S1[i].find(a) != S1[i].end() && S2[j].find(b) != S2[j].end()) {
			cout << "YES";
			return;
		}
	}





	cout << "NO";

}

int main() {
	int t;
	// cin >> t;
	t = 1;
	while(t--) solve();



}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3440kb

input:

4 5

output:

YES

result:

ok answer is YES

Test #2:

score: 0
Accepted
time: 1ms
memory: 3456kb

input:

3 0

output:

YES

result:

ok answer is YES

Test #3:

score: 0
Accepted
time: 1ms
memory: 3384kb

input:

1 2

output:

NO

result:

ok answer is NO

Test #4:

score: 0
Accepted
time: 1ms
memory: 3596kb

input:

0 0

output:

NO

result:

ok answer is NO

Test #5:

score: 0
Accepted
time: 1ms
memory: 3388kb

input:

0 1

output:

NO

result:

ok answer is NO

Test #6:

score: 0
Accepted
time: 1ms
memory: 3372kb

input:

0 2

output:

NO

result:

ok answer is NO

Test #7:

score: 0
Accepted
time: 1ms
memory: 3392kb

input:

0 3

output:

NO

result:

ok answer is NO

Test #8:

score: 0
Accepted
time: 1ms
memory: 3604kb

input:

0 4

output:

NO

result:

ok answer is NO

Test #9:

score: 0
Accepted
time: 1ms
memory: 3404kb

input:

0 5

output:

NO

result:

ok answer is NO

Test #10:

score: 0
Accepted
time: 1ms
memory: 3356kb

input:

0 6

output:

YES

result:

ok answer is YES

Test #11:

score: 0
Accepted
time: 1ms
memory: 3380kb

input:

0 7

output:

YES

result:

ok answer is YES

Test #12:

score: 0
Accepted
time: 1ms
memory: 3372kb

input:

0 8

output:

YES

result:

ok answer is YES

Test #13:

score: 0
Accepted
time: 1ms
memory: 3572kb

input:

0 9

output:

YES

result:

ok answer is YES

Test #14:

score: 0
Accepted
time: 1ms
memory: 3440kb

input:

0 10

output:

YES

result:

ok answer is YES

Test #15:

score: 0
Accepted
time: 1ms
memory: 3568kb

input:

0 11

output:

YES

result:

ok answer is YES

Test #16:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

0 12

output:

YES

result:

ok answer is YES

Test #17:

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

input:

1 0

output:

NO

result:

ok answer is NO

Test #18:

score: 0
Accepted
time: 1ms
memory: 3440kb

input:

1 1

output:

NO

result:

ok answer is NO

Test #19:

score: 0
Accepted
time: 1ms
memory: 3436kb

input:

1 4

output:

YES

result:

ok answer is YES

Test #20:

score: 0
Accepted
time: 1ms
memory: 3396kb

input:

1 6

output:

YES

result:

ok answer is YES

Test #21:

score: 0
Accepted
time: 1ms
memory: 3412kb

input:

1 7

output:

YES

result:

ok answer is YES

Test #22:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

1 8

output:

YES

result:

ok answer is YES

Test #23:

score: 0
Accepted
time: 1ms
memory: 3400kb

input:

2 3

output:

YES

result:

ok answer is YES

Test #24:

score: 0
Accepted
time: 1ms
memory: 3384kb

input:

2 4

output:

NO

result:

ok answer is NO

Test #25:

score: 0
Accepted
time: 1ms
memory: 3440kb

input:

2 6

output:

YES

result:

ok answer is YES

Test #26:

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

input:

2 8

output:

NO

result:

ok answer is NO

Test #27:

score: 0
Accepted
time: 1ms
memory: 3384kb

input:

3 1

output:

NO

result:

ok answer is NO

Test #28:

score: 0
Accepted
time: 1ms
memory: 3372kb

input:

0 18

output:

YES

result:

ok answer is YES

Test #29:

score: 0
Accepted
time: 1ms
memory: 3540kb

input:

4 12

output:

YES

result:

ok answer is YES

Test #30:

score: 0
Accepted
time: 1ms
memory: 3512kb

input:

4 11

output:

YES

result:

ok answer is YES

Test #31:

score: 0
Accepted
time: 1ms
memory: 3372kb

input:

5 2

output:

YES

result:

ok answer is YES

Test #32:

score: 0
Accepted
time: 1ms
memory: 3388kb

input:

5 3

output:

YES

result:

ok answer is YES

Test #33:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

5 4

output:

NO

result:

ok answer is NO

Test #34:

score: 0
Accepted
time: 1ms
memory: 3460kb

input:

5 6

output:

YES

result:

ok answer is YES

Test #35:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

6 0

output:

YES

result:

ok answer is YES

Test #36:

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

input:

8 0

output:

NO

result:

ok answer is NO

Test #37:

score: 0
Accepted
time: 1ms
memory: 3596kb

input:

8 1

output:

NO

result:

ok answer is NO

Test #38:

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

input:

8 2

output:

YES

result:

ok answer is YES

Test #39:

score: 0
Accepted
time: 1ms
memory: 3404kb

input:

8 3

output:

YES

result:

ok answer is YES

Test #40:

score: 0
Accepted
time: 1ms
memory: 3436kb

input:

5 5

output:

YES

result:

ok answer is YES

Test #41:

score: 0
Accepted
time: 1ms
memory: 3392kb

input:

100 100

output:

NO

result:

ok answer is NO

Test #42:

score: 0
Accepted
time: 1ms
memory: 3436kb

input:

0 100

output:

NO

result:

ok answer is NO

Test #43:

score: 0
Accepted
time: 1ms
memory: 3328kb

input:

100 0

output:

NO

result:

ok answer is NO

Test #44:

score: 0
Accepted
time: 1ms
memory: 3440kb

input:

15 23

output:

NO

result:

ok answer is NO

Test #45:

score: 0
Accepted
time: 1ms
memory: 3324kb

input:

46 53

output:

NO

result:

ok answer is NO

Test #46:

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

input:

9 0

output:

YES

result:

ok answer is YES

Test #47:

score: 0
Accepted
time: 1ms
memory: 3396kb

input:

2 5

output:

YES

result:

ok answer is YES