博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #282 (Div. 2) a
阅读量:6231 次
发布时间:2019-06-21

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

hot3.png

/** * @brief Codeforces Round #282 (Div. 2) a * @file a.cpp * @author mianma * @created 2014/12/15 9:55 * @edited  2014/12/15 9:55 * @type math * @note */#include 
#include 
#include 
using namespace std;#define max(a, b)  ((a) > (b) ? (a) : (b))#define min(a, b)  ((a) > (b) ? (b) : (a)) #define abs(a)     ((a) >  0  ? (a) : (0 - (a)))#define CLR(vec)   memset(vec, 0, sizeof(vec))#ifdef DEBUGifstream in;ofstream out;#define CIN in#define COUT out#else#define CIN cin#define COUT cout#endifconst int table[] = {1, 6, 1, 2, 2, 3, 1, 4, 0, 1};string str;int main(void){    ios_base::sync_with_stdio(0);#ifdef DEBUG    CIN.open("./in",  ios::in);    COUT.open("./out",  ios::out);#endif    CIN >> str;    COUT << (table[str[0] - '0'] + 1)* (table[str[1] - '0']+ 1) << "\n";     return 0;}

转载于:https://my.oschina.net/u/572632/blog/356204

你可能感兴趣的文章
物联网的三层架构
查看>>
linux性能剖析工具
查看>>
Mysql数据库安装---解压版
查看>>
在多文档应用程序中使用OpenGL绘图
查看>>
【转】HTTP状态码(HTTP Status Code)
查看>>
在Eclipse下搭建Android开发环境教程,HelloWord
查看>>
python自动化测试——设置元素等待
查看>>
Ubuntu下使用SVN
查看>>
shutdown与startup命令
查看>>
swift -- 计步器CMPedometer的使用
查看>>
zTree的重点
查看>>
Java 文件读写操作
查看>>
BDFL
查看>>
poj1411
查看>>
java中的throw与throws的区别
查看>>
Error: Password file read access must be restricted: /etc/cassandra/jmxremote.password
查看>>
常用的垃圾回收算法
查看>>
DP ZOJ 3872 Beauty of Array
查看>>
SSH整合报错:找不到元素 'beans' 的声明
查看>>
Spring 依赖注入方式详解
查看>>