比赛 16暑期热身练习 评测结果 AWAWWWWWWAWWWWW
题目名称 逻辑岛 最终得分 20
用户昵称 胡嘉兴 运行时间 0.002 s
代码语言 C++ 内存使用 0.29 MiB
提交时间 2016-07-01 11:28:33
显示代码纯文本
#include <cstdio>
#include <cstring>

using namespace std;

#define N 117

int main()
{
	int n, i;
	int book[N][N];
	
	freopen("logicisland.in", "r", stdin);
	freopen("logicisland.out", "w", stdout);
	
	printf("No facts are deducible.\n");
	
	fclose(stdin);
	fclose(stdout);
	return 0;
}