比赛 202103省实验桐柏一中普及组联赛 评测结果 WWWWWWWWWW
题目名称 亡羊补牢,未为迟也 最终得分 0
用户昵称 zhuyixin 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2021-03-22 18:57:49
显示代码纯文本
#include <bits/stdc++.h>

using namespace std;
int n,m,ans;
void dfs(int x,int y){
	if(x==1||y==1) ans=max(x,y);
	else{
	    ans=ceil(x/5)*ceil(y/5)+4;
	}
}

int main(){
	freopen("secretnum.in","r",stdin);
	freopen("secretnum.out","w",stdout);
	cin>>n>>m;
	dfs(n,m);
	cout <<ans;
    return 0;
}