比赛 NOIP模拟赛1 评测结果 RRRRRRRRRR
题目名称 异或 最终得分 0
用户昵称 313 运行时间 0.001 s
代码语言 C++ 内存使用 0.22 MiB
提交时间 2018-02-08 21:36:54
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;int n,m;
int main()
{	cin>>n>>m;
	if(n<10&&m<10)cout<<8;
	else if(n<100&&m<100)cout<<13;
	else if(n<1000&&m<1000)cout<<253;
	else cout<<115;
	return 0;
}