CF#356 div2 C 猜数字

C. Bear and Prime 100
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

This is an interactive problem. In the output section below you will see the information about flushing the output.

Bear Limak thinks of some hidden number — an integer from interval [2, 100]. Your task is to say if the hidden number is prime or composite.

Integer x > 1 is called prime if it has exactly two distinct divisors, 1 and x. If integer x > 1 is not prime, it's called composite.

You can ask up to 20 queries about divisors of the hidden number. In each query you should print an integer from interval [2, 100]. The system will answer "yes" if your integer is a divisor of the hidden number. Otherwise, the answer will be "no".

For example, if the hidden number is 14 then the system will answer "yes" only if you print 2,7 or 14.

When you are done asking queries, print "prime" or "composite" and terminate your program.

You will get the Wrong Answer verdict if you ask more than 20 queries, or if you print an integer not from the range [2, 100]. Also, you will get the Wrong Answer verdict if the printed answer isn't correct.

You will get the Idleness Limit Exceeded verdict if you don't print anything (but you should) or if you forget about flushing the output (more info below).

Input

After each query you should read one string from the input. It will be "yes" if the printed integer is a divisor of the hidden number, and "no" otherwise.

Output

Up to 20 times you can ask a query — print an integer from interval [2, 100] in one line. You have to both print the end-of-line character and flush the output. After flushing you should read a response from the input.

In any moment you can print the answer "prime" or "composite" (without the quotes). After that, flush the output and terminate your program.

To flush you can use (just after printing an integer and end-of-line):

  • fflush(stdout) in C++;
  • System.out.flush() in Java;
  • stdout.flush() in Python;
  • flush(output) in Pascal;
  • See the documentation for other languages.

Hacking. To hack someone, as the input you should print the hidden number — one integer from the interval [2, 100]. Of course, his/her solution won't be able to read the hidden number from the input.

Examples
input
yes no yes
output
2 80 5 composite
input
no yes no no no
output
58 59 78 78 2 prime
Note

The hidden number in the first query is 30. In a table below you can see a better form of the provided example of the communication process.

The hidden number is divisible by both 2 and 5. Thus, it must be composite. Note that it isn't necessary to know the exact value of the hidden number. In this test, the hidden number is 30.

59 is a divisor of the hidden number. In the interval [2, 100] there is only one number with this divisor.

The hidden number must be 59, which is prime. Note that the answer is known even after the second query

and you could print it then and terminate. Though, it isn't forbidden to ask unnecessary queries (unless you exceed

the limit of 20 queries).

题意:系统给出一个除了一个数字(你不知道),你每次可以出一个数字,若这个数字是系统的数字的约数,则系统输出

yes否则输出no,你最多可以猜20次,要求在20次以内判定系统的数字是质数还是合数;

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <algorithm>
#include <set>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define MM(a,b) memset(a,b,sizeof(a));
const double eps = 1e-10;
const int  inf =0x7f7f7f7f;
const double pi=acos(-1);
int p2,q2,p1,ep,q1;
const int INF = 0x3f3f3f3f;
const int maxn = 1100;
int a[]={2,3,4,5,7,9,11,13,17,19,23,25,29,31,37,41,43,47,49};
char s[13];
int main()
{
   int cnt=0;
   for(int i=0;i<19;i++)
   {
       printf("%d
",a[i]);
       fflush(stdout);
       scanf("%s",s);
       if(s[0]=='y') cnt++;
       if(cnt>=2) break;
   }
   if(cnt>=2) printf("composite
");
   else printf("prime
");
   return 0;
}

分析:题是水题,,但是输入输出是挂了,,看代码,,只要统计下2-50就好,因为>50的话,至少是2*m的

范围又是100,所以只要统计下<=50的,暴力打表一发

原文地址:https://www.cnblogs.com/smilesundream/p/5573230.html