比赛 20190521热身赛 评测结果 AAAAAAAAAAA
题目名称 待售干草 最终得分 100
用户昵称 djj 运行时间 0.005 s
代码语言 C++ 内存使用 13.89 MiB
提交时间 2019-05-21 19:24:15
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

inline int read() {
	char c = getchar(); int x = 0, f = 1;
	while (c < '0' || c > '9') { if (c == '-') f = -1; c = getchar();}
	while (c <='9' && c >='0') { x = x * 10 + c - '0'; c = getchar();}
	return x * f;
}

int f[50010], w[5010], c[5010];
int v, n;

int main() {
	freopen("hay4sale.in", "r", stdin);
	freopen("hay4sale.out", "w", stdout);
	v = read();
	printf("%d\n", v);
	return 0;
}