博客
关于我
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的10种常用数据类型
查看>>
MySQL的btree索引和hash索引的区别
查看>>
mysql的cast函数
查看>>
MySql的CRUD(增、删、改、查)操作
查看>>
MySQL的DATE_FORMAT()函数将Date转为字符串
查看>>
mysql的decimal与Java的BigDecimal用法
查看>>
MySql的Delete、Truncate、Drop分析
查看>>
MySQL的Geometry数据处理之WKB方案
查看>>
MySQL的Geometry数据处理之WKT方案
查看>>
mysql的grant用法
查看>>
Mysql的InnoDB引擎的表锁与行锁
查看>>
mysql的InnoDB引擎索引为什么使用B+Tree
查看>>
MySQL的InnoDB默认隔离级别为 Repeatable read(可重复读)为啥能解决幻读问题?
查看>>
MySQL的insert-on-duplicate语句详解
查看>>
mysql的logrotate脚本
查看>>
MySQL的my.cnf文件(解决5.7.18下没有my-default.cnf)
查看>>
MySQL的on duplicate key update 的使用
查看>>
MySQL的Replace用法详解
查看>>
mysql的root用户无法建库的问题
查看>>
mysql的sql_mode参数
查看>>