比赛 |
16暑期热身练习 |
评测结果 |
WAWAWWWWAWWWWWW |
题目名称 |
逻辑岛 |
最终得分 |
20 |
用户昵称 |
kxxy |
运行时间 |
0.004 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-07-01 11:29:12 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include <algorithm>
#include<cstdlib>
using namespace std;
int n;
char a[250];
int main()
{
freopen("logicisland.in","r",stdin);
freopen("logicisland.out","w",stdout);
cin>>n;
cin.getline(a,250);
if(string(a).find("not")!=string::npos)cout<<"No facts are deducible.";
else cout<<"This is impossible.";
return 0;
}