952D I'm Feeling Lucky!
程序员文章站
2024-03-16 17:32:46
...
D. I'm Feeling Lucky!
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard outputYou have one chip and one chance to play roulette. Are you feeling lucky?
Output
Print your bet. Your chip must be placed entirely within some square (not on an edge or a corner shared by adjacent squares).
题意:愚人节专场 这道题和b题一样的,是个概率题,是看脸的(因为答案是随机的,看运气过不过,不过的话多交几次,我在群里看到一些大佬,交了十多次最终才过)。刚开始看到b题和d题,是懵的,因为自从做cf以来,没遇到这种没有样例的题。
题解:**题 自己随便打印(奇数)odd或者even(偶数),颜色(red....),过不过看脸!我是交了4次过了
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"Odd"<<endl;
return 0;
}