Submission #223470


Source Code Expand

#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <ctime>
#include <fstream>
#include <queue>

#pragma warning( disable: 4996 )

using namespace std;

typedef long long ll;
typedef pair<int, int> P;

#define INF 100000000
#define EPS 1e-9

int N, A, B;

int main(){

	cin >> N >> A >> B;

	N %= (A + B);

	if (N == 0)
		cout << "Bug" << endl;

	else if (N / A == 0 || N % A == 0)
		cout << "Ant" << endl;
	else
		cout << "Bug" << endl;



	return 0;

}

Submission Info

Submission Time
Task A - 小石を取るゲーム
User taketake0609
Language C++ (G++ 4.6.4)
Score 0
Code Size 831 Byte
Status WA
Exec Time 24 ms
Memory 924 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 1
WA × 1
AC × 12
WA × 1
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
All subtask1_01.txt, subtask1_02.txt, subtask1_03.txt, subtask1_04.txt, subtask1_05.txt, subtask1_06.txt, subtask1_07.txt, subtask1_08.txt, subtask1_09.txt, subtask1_10.txt, subtask1_11.txt, subtask1_12.txt, subtask1_13.txt
Case Name Status Exec Time Memory
sample_01.txt WA 22 ms 924 KB
sample_02.txt AC 22 ms 924 KB
subtask1_01.txt AC 21 ms 676 KB
subtask1_02.txt AC 21 ms 704 KB
subtask1_03.txt AC 21 ms 676 KB
subtask1_04.txt WA 21 ms 804 KB
subtask1_05.txt AC 22 ms 800 KB
subtask1_06.txt AC 24 ms 764 KB
subtask1_07.txt AC 22 ms 732 KB
subtask1_08.txt AC 22 ms 796 KB
subtask1_09.txt AC 22 ms 804 KB
subtask1_10.txt AC 22 ms 924 KB
subtask1_11.txt AC 21 ms 800 KB
subtask1_12.txt AC 23 ms 800 KB
subtask1_13.txt AC 22 ms 792 KB