博客
关于我
The Bits CodeForces - 1017B(组合数学,水)
阅读量:240 次
发布时间:2019-03-01

本文共 281 字,大约阅读时间需要 1 分钟。

注意要用long long

AC代码:

#include 
#include
#include
#include
#include
using namespace std;typedef long long ll;const int maxn=1e6+5;int main(){ int n; cin>>n; string a,b; cin>>a>>b; ll num01=0,num10=0,num11=0,num00=0; for(int i=0;i

 

转载地址:http://ifnt.baihongyu.com/

你可能感兴趣的文章
mysql 将null转代为0
查看>>
mysql 常用
查看>>
MySQL 常用列类型
查看>>
mysql 常用命令
查看>>
Mysql 常见ALTER TABLE操作
查看>>
MySQL 常见的 9 种优化方法
查看>>
MySQL 常见的开放性问题
查看>>
Mysql 常见错误
查看>>
mysql 常见问题
查看>>
MYSQL 幻读(Phantom Problem)不可重复读
查看>>
mysql 往字段后面加字符串
查看>>
mysql 快照读 幻读_innodb当前读 与 快照读 and rr级别是否真正避免了幻读
查看>>
MySQL 快速创建千万级测试数据
查看>>
mysql 快速自增假数据, 新增假数据,mysql自增假数据
查看>>
MySql 手动执行主从备份
查看>>
Mysql 批量修改四种方式效率对比(一)
查看>>
mysql 批量插入
查看>>
Mysql 报错 Field 'id' doesn't have a default value
查看>>
MySQL 报错:Duplicate entry 'xxx' for key 'UNIQ_XXXX'
查看>>
Mysql 拼接多个字段作为查询条件查询方法
查看>>