比赛 欢乐水题赛 评测结果 AAWWW
题目名称 抓狂的悟空 最终得分 40
用户昵称 fyb 运行时间 0.002 s
代码语言 C++ 内存使用 0.29 MiB
提交时间 2015-04-24 18:46:16
显示代码纯文本
#include <cstdio>

int main(){
	long long l;

	freopen("wukong.in","r",stdin);
	freopen("wukong.out","w",stdout);

	scanf("%lld",&l);
	printf("%lld",(l%108000000ll)?(l/108000000ll+2):(l/108000000ll));
	return 0;
}