码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • A. 2-3 Moves


    time limit per test

    1 second

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    You are standing at the point 00 on a coordinate line. Your goal is to reach the point nn. In one minute, you can move by 22 or by 33 to the left or to the right (i. e., if your current coordinate is xx, it can become x−3x−3, x−2x−2, x+2x+2 or x+3x+3). Note that the new coordinate can become negative.

    Your task is to find the minimum number of minutes required to get from the point 00 to the point nn.

    You have to answer tt independent test cases.

    Input

    The first line of the input contains one integer tt (1≤t≤1041≤t≤104) — the number of test cases. Then tt lines describing the test cases follow.

    The ii-th of these lines contains one integer nn (1≤n≤1091≤n≤109) — the goal of the ii-th test case.

    Output

    For each test case, print one integer — the minimum number of minutes required to get from the point 00 to the point nn for the corresponding test case.

    Example

    input

    Copy

     
    

    4

    1

    3

    4

    12

    output

    Copy

    2
    1
    2
    4
    

    解题说明:水题,此题找规律即可,注意区分n=1的情况。

    1. #include
    2. int main()
    3. {
    4. int t, n;
    5. scanf("%d", &t);
    6. while (t--)
    7. {
    8. scanf("%d", &n);
    9. if (n == 1)
    10. {
    11. printf("2\n");
    12. }
    13. else
    14. {
    15. printf("%d\n", ((n - 1) / 3) + 1);
    16. }
    17. }
    18. return 0;
    19. }

  • 相关阅读:
    数字孪生3D可视化,人员定位系统助力企业数字化转型
    LeetCode994. 腐烂的橘子(C++中等题)
    JavaParser的快速介绍
    css预处理是什么?作用是什么?
    Facebook 正在研究新型 AI 系统,以自我视角与世界进行交互
    VVC系列(三)xCompressCTU、xCompressCU和xCheckModeSplit解析
    揭秘分布式文件系统大规模元数据管理机制——以Alluxio文件系统为例
    Vue基础入门教程(vue2)
    torch.nn.interpolate—torch上采样和下采样操作
    IB课程英文如何学才能取得高分?
  • 原文地址:https://blog.csdn.net/jj12345jj198999/article/details/126336305
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号