3 条题解

  • 3
    @ 2023-10-28 20:34:58
    #include <bits/stdc++.h>
    using namespace std;
    int n, anst, anss;
    
    int main()
    {
        freopen ("apple.in", "r", stdin);
        freopen ("apple.out", "w", stdout);
        scanf ("%d", &n);
        while (n)
        {
            anst++;
            if (!anss && n % 3 == 1)
                anss = anst;
            n -= (n + 2) / 3;
        }
        printf ("%d %d", anst, anss);
        return 0;
    }
    

    信息

    ID
    1347
    时间
    1000ms
    内存
    512MiB
    难度
    8
    标签
    递交数
    115
    已通过
    20
    上传者