CodeforcesRound#282(Div.2)a_html/css
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 16:33:38
CodeforcesRound#282(Div.2)a_html/css
CodeforcesRound#282(Div.2)a_html/css_WEB-ITnose:/** * @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)
導(dǎo)讀CodeforcesRound#282(Div.2)a_html/css_WEB-ITnose:/** * @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)

/** * @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;}
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
CodeforcesRound#282(Div.2)a_html/css
CodeforcesRound#282(Div.2)a_html/css_WEB-ITnose:/** * @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)