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

Educational Codeforces Round 81 (Rated for Div. 2)

时间:2020-01-30 09:20:58      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:can   nal   scan   http   题意   for   The   cpp   ==   

A - Display The Number

题意:给n根火柴,拼出最大的数字。

技术图片

题解:肯定是数字越多越大,所以尽可能多拿最便宜的2根火柴一个“1”,多余的肯定是拿一个“7”,由于n>=2,没有特例。

void test_case() {
    int n;
    scanf("%d", &n);
    if(n % 2 == 1) {
        printf("%d", 7);
        n -= 3;
    }
    while(n) {
        printf("%d", 1);
        n -= 2;
    }
    printf("\n");
}

Educational Codeforces Round 81 (Rated for Div. 2)

标签:can   nal   scan   http   题意   for   The   cpp   ==   

原文地址:https://www.cnblogs.com/KisekiPurin2019/p/12241986.html

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