博客
关于我
NYOJ-525 一道水题
阅读量:801 次
发布时间:2023-02-17

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

???????????????????LZQ??????????????????????????????????????????'5'???????????????????????????????????????'0'?????????????'0'?????????0?????????????????????

????

????????????????????????????????????????5000????????????????????100000000???????'5'????0?

??

??????????????????????????????????????????

????

0051231232050775

????

0 77 12312320

????

  • ??????????????????????????'5'????????
  • ????'5'?????????'5'????????????
  • ???????
    • ?????????'5'????????????????
    • ?????'5'???????????
    • ???????????
  • ?????????????????????????????????
  • ????

    #include 
    #include
    #include
    using namespace std;int main() { char s[5005]; int a[5005]; int len, i = 0, k = 0, n = 0; while (scanf("%s", s) != EOF) { len = strlen(s); s[len] = '5'; i = 0; // ????'5' while (i < len && s[i] == '5') { i++; } if (i >= len) { // ??????'5' a[n++] = 0; continue; } for (; i < len; i++) { if (s[i] == '5' && s[i-1] == '5') { continue; } if (s[i] != '5') { k = k * 10 + (s[i] - '0'); a[n++] = k; k = 0; } } sort(a, a + n); printf("%d", a[0]); for (int i = 1; i < n; i++) { printf(" %d", a[i]); } } return 0;}

    ????

  • ???????scanf???????????????'5'?????
  • ????'5'??????????????'5'????????
  • ??????????????'5'?????????????????'5'???????????
  • ??????????????????????????
  • ????????????????????????????

    转载地址:http://zknfk.baihongyu.com/

    你可能感兴趣的文章
    NMAP网络扫描工具的安装与使用
    查看>>
    NN&DL4.1 Deep L-layer neural network简介
    查看>>
    NN&DL4.3 Getting your matrix dimensions right
    查看>>
    NN&DL4.8 What does this have to do with the brain?
    查看>>
    No 'Access-Control-Allow-Origin' header is present on the requested resource.
    查看>>
    No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
    查看>>
    No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
    查看>>
    No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
    查看>>
    No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
    查看>>
    No module named cv2
    查看>>
    No module named tensorboard.main在安装tensorboardX的时候遇到的问题
    查看>>
    No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
    查看>>
    No new migrations found. Your system is up-to-date.
    查看>>
    No qualifying bean of type XXX found for dependency XXX.
    查看>>
    No resource identifier found for attribute 'srcCompat' in package的解决办法
    查看>>
    No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
    查看>>
    NO.23 ZenTaoPHP目录结构
    查看>>
    NoClassDefFoundError: org/springframework/boot/context/properties/ConfigurationBeanFactoryMetadata
    查看>>
    Node JS: < 一> 初识Node JS
    查看>>
    Node-RED中使用JSON数据建立web网站
    查看>>