码迷,mamicode.com
首页 > 其他好文 > 详细

【Educational Codeforces Round 81 (Rated for Div. 2) A】Display The Number

时间:2020-01-30 09:24:38      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:txt   define   cout   class   mes   ack   out   round   cat   

题目链接

【题解】


优先用2个棒子来凑1.
如果为奇数的话,多出来一根用3根来凑个7放在开头

【代码】

#include <bits/stdc++.h>
using namespace std;



int main(){
    #ifdef LOCAL_DEFINE
        freopen("E:\\rush.txt","r",stdin);
    #endif // LOCAL_DEFINE
    ios::sync_with_stdio(0),cin.tie(0);
    int T;
    cin >> T;
    while (T--){
        int n;
        cin >> n;
        if (n&1){
            cout<<7;
            n-=3;
        }
        for (int i = 1;i <= n/2;i++) cout<<1;
        cout<<endl;
    }
    return 0;
}

【Educational Codeforces Round 81 (Rated for Div. 2) A】Display The Number

标签:txt   define   cout   class   mes   ack   out   round   cat   

原文地址:https://www.cnblogs.com/AWCXV/p/12242089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!