UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#211128#3800. 蛋糕mengxiangjia00ms1124kbC++114.8kb2024-08-09 11:58:072024-08-09 12:55:04

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#ifdef ONLINE_JUDGE
#define getchar getchar_unlocked
#endif
namespace FastIO
{
    char write_cache[40];
    template <class T>
    inline const T read() noexcept
    {
        T x(0);
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        return f ? -x : x;
    }
    template <class T>
    inline const void read(T &x) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        x = f ? -x : x;
    }
    template <class T, class... P>
    inline const void read(T &x, P &...ark) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            f ^= ch == '-', ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        x = f ? -x : x;
        read(ark...);
    }
    template <class T>
    inline const void readu(T &x) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
    }
    template <class T>
    inline const T readu() noexcept
    {
        T x(0);
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        return x;
    }
    template <class T, class... P>
    inline const void readu(T &x, P &...ark) noexcept
    {
        x = 0;
        char ch(getchar());
        bool f(0);
        while (ch < '0' || ch > '9')
            ch = getchar();
        while (ch >= '0' && ch <= '9')
            x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
        readu(ark...);
    }
    template <class T>
    inline const void readArr(T *begin, T *end) noexcept
    {
        while (begin < end)
        {
            *begin = 0;
            char ch(getchar());
            bool f(0);
            while (ch < '0' || ch > '9')
                f ^= ch == '-', ch = getchar();
            while (ch >= '0' && ch <= '9')
                *begin = (*begin << 1) + (*begin << 3) + (ch ^ 48), ch = getchar();
            *begin = f ? -*begin : *begin;
        }
    }
    template <class T>
    inline const void readArr(T *begin, int cnt) noexcept
    {
        while (cnt--)
        {
            read(*begin);
            ++begin;
        }
    }
    template <class T>
    inline const void write(T x) noexcept
    {
        if (x < 0)
            putchar('-'), x = -x;
        int cnt = 0;
        while (x)
            write_cache[cnt++] = x % 10 ^ 48, x /= 10;
        if (!cnt)
            putchar('0');
        else
            while (cnt--)
                putchar(write_cache[cnt]);
    }
    template <char end = ' ', class T, class... ARK>
    inline const void write(T &x, ARK &...ark) noexcept
    {
        write(x);
        putchar(end);
        write(ark...);
    }
    template <char end = '\n', class T>
    inline const void println(T x) noexcept
    {
        if (x < 0)
            putchar('-'), x = -x;
        int cnt = 0;
        while (x)
            write_cache[cnt++] = x % 10 ^ 48, x /= 10;
        if (!cnt)
            putchar('0');
        else
            while (cnt--)
                putchar(write_cache[cnt]);
        putchar(end);
    }
    template <char sep = ' ', char endl = '\n', class T>
    inline const void writeArr(T *begin, T *end) noexcept
    {
        while (begin < end)
            write(*begin), putchar(sep), ++begin;
        putchar(endl);
    }
    template <char sep = ' ', char end = '\n', class T>
    inline const void writeArr(T *arr, int cnt)
    {
        while (cnt--)
        {
            write(*arr);
            putchar(sep);
            ++arr;
        }
        putchar(end);
    }
}
int l, t;
int main()
{
    for (int i = 0; i < 18; ++i)
    {
        FastIO::read(l, t);
        bool negative = (l < 0) ^ (t < 0);
        if (negative)
            putchar('-');
        l = abs(l), t = abs(t);
        int integer = l / t;
        int flt = l % t;
        if (!flt)
        {
            FastIO::println(integer);
        }
        FastIO::println<'.'>(integer);
    }
    return 0;
}

Details

小提示:点击横条可展开更详细的信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

85 85
59 59
52 52
96 12
62 31
48 24
85 85
85 85
69 69
76 38
72 24
54 27
100 20
72 72
42 42
81 81
78 ...

output:

1
1.1
1.1
1.8
8.2
2.2
2.1
1.1
1.1
1.2
2.3
3.2
2.5
5.1
1.1
1.1
1.1
1.1
1.

result:

wrong answer 2nd words differ - expected: '1', found: '1.1'

Test #2:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

9696 9696
9036 9036
4771 4771
7751 7751
9073 9073
9085 9085
6444 358
4581 4581
8505 8505
8028 2007
9...

output:

1
1.1
1.1
1.1
1.1
1.1
1.18
18.1
1.1
1.4
4.2
2.5
5.2
2.1
1.1
1.1
1.1
1.1
1.

result:

wrong answer 2nd words differ - expected: '1', found: '1.1'

Test #3:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

648044 648044
949839 949839
401844 401844
916962 916962
875649 875649
227737 227737
827552 827552
64...

output:

1
1.1
1.1
1.1
1.1
1.1
1.1
1.1
1.1
1.1
1.2
2.7
7.2
2.2
2.5
5.2
2.1
1.2
2.

result:

wrong answer 2nd words differ - expected: '1', found: '1.1'

Test #4:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

37 25
43 10
56 10
47 2
50 50
66 80
34 50
3 8
56 1
49 10
97 5
10 1
76 40
52 50
70 5
26 1
97 32
32 64

output:

1.4.5.23.1
1.0.0.0.56
56.4.19.10
10.1.1.14
14.26
26.3.0.

result:

wrong answer 1st words differ - expected: '1.48', found: '1.4.5.23.1'

Test #5:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

451 100
844 50
744 100
874 8
19 625
443 400
415 512
766 625
189 5
71 128
247 80
307 640
395 160
101 ...

output:

4.16.7.109.0.1.0.1.37.0.3.0.2.6.0.4.57.54.

result:

wrong answer 1st words differ - expected: '4.51', found: '4.16.7.109.0.1.0.1.37.0.3.0.2.6.0.4.57.54.'

Test #6:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

7819 400
2868 512
4833 800
6024 6250
3285 8000
9721 125
4037 6250
8159 1250
4544 3125
6659 5000
8331...

output:

19.5.6.0.0.77.0.6.1.1.41.2.12.1.235.0.60.24.

result:

wrong answer 1st words differ - expected: '19.5475', found: '19.5.6.0.0.77.0.6.1.1.41.2.12.1.235.0.6...

Test #7:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

562036 800
494900 160000
710305 4096
549145 125000
277786 125
375881 390625
992034 2
702342 3125
569...

output:

702.3.173.4.2222.0.496017
496017.224.7.47.170.14.8.1.164.1.1.1.

result:

wrong answer 1st words differ - expected: '702.545', found: '702.3.173.4.2222.0.496017'

Test #8:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

910 999
944 999
1978 999
581 999
482 999
380 999
130 999
838 999
326 999
1097 999
568 999
358 999
11...

output:

0.0.1.0.0.0.0.0.0.1.0.0.0.9.0.7.2.8.

result:

wrong answer 1st words differ - expected: '0.(910)', found: '0.0.1.0.0.0.0.0.0.1.0.0.0.9.0.7.2.8.'

Test #9:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

8452 9999
4205 9999
4177 9999
73522 9999
2260 9999
9992 9999
45229 9999
6275 9999
1886 9999
63203 99...

output:

0.0.0.7.0.0.4.0.0.6.0.0.5.0.0.8.0.2.

result:

wrong answer 1st words differ - expected: '0.(8452)', found: '0.0.0.7.0.0.4.0.0.6.0.0.5.0.0.8.0.2.'

Test #10:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

652832 99999
86603 99999
698815 99999
733498 99999
81815 99999
208109 99999
37024 99999
4883 99999
7...

output:

6.0.6.7.0.2.0.0.7.0.3.0.0.0.3.0.3.0.

result:

wrong answer 1st words differ - expected: '6.(52838)', found: '6.0.6.7.0.2.0.0.7.0.3.0.0.0.3.0.3.0.'

Test #11:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

103 491
83 1
114 757
214 7
851 243
672 391
532 3
130 61
385 577
119 233
398 241
607 559
460 1
3 717
...

output:

0.83
83.0.30.3.1.177.2.0.0.1.1.460
460.0.6.0.1.0.

result:

wrong answer 1st words differ - expected: '0.(209775967413441955193482688...926680244399185336048879...

Test #12:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

4173 2067
5038 4221
9002 4023
5399 8061
3182 4767
6110 1191
2345 1919
2234 8581
2139 4047
5103 8841
...

output:

2.1.2.0.0.5.1.0.0.0.1.12.1.7.5.0.198.1.

result:

wrong answer 1st words differ - expected: '2.(0188679245283)', found: '2.1.2.0.0.5.1.0.0.0.1.12.1.7....

Test #13:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

122878 63889
743422 282861
708740 16059
224329 125883
600815 5271
229177 746563
135403 246477
916903...

output:

1.2.44.1.113.0.0.188.0.15.4.0.3.2.262.5.0.4.

result:

wrong answer 1st words differ - expected: '1.(923304481209597896351484606...955735729155253643037142...

Test #14:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

792 834
521 262
307 500
269 340
155 96
414 536
173 96
137 735
187 321
577 788
787 958
811 192
563 28...

output:

0.1.0.0.1.0.1.0.0.0.0.4.2.0.5.0.0.0.

result:

wrong answer 1st words differ - expected: '0.(9496402877697841726618705035971223021582733812)', foun...

Test #15:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

1985 1210
1986 723
1986 628
1988 52
1991 1026
1989 519
1989 1226
1989 21
1984 712
1996 27
1996 816
1...

output:

1.2.3.38.1.3.1.94.2.73.2.22.2.9.1.79.17.2.

result:

wrong answer 1st words differ - expected: '1.6(4049586776859504132231)', found: '1.2.3.38.1.3.1.94.2...

Test #16:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

9941 8960
4951 2688
5659 3776
6203 4096
3449 8816
1517 2269
8977 5183
4189 3777
4928 9496
37 9552
89...

output:

1.1.1.1.0.0.1.1.0.0.4.0.0.0.4.0.0.0.

result:

wrong answer 1st words differ - expected: '1.10948660(714285)', found: '1.1.1.1.0.0.1.1.0.0.4.0.0.0....

Test #17:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

80258 62742
8017 18626
10499 36864
27011 55552
32593 37660
61539 72315
2281 51248
45697 64256
3866 3...

output:

1.0.0.0.0.0.0.0.0.0.3.0.1.0.3.1.0.0.

result:

wrong answer 1st words differ - expected: '1.(279175034267316948774345733...800930795958050428739919...

Test #18:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

50937 87224
94005 68794
95287 97008
56806 11386
84920 37159
65243 1776
42961 26609
62779 4311
56039 ...

output:

0.1.0.4.2.36.1.14.0.1.1.0.7.0.0.0.0.0.

result:

wrong answer 1st words differ - expected: '0.583(979180042190222874438228...451802256259745024305237...

Test #19:

score: 0
Wrong Answer
time: 0ms
memory: 1120kb

input:

1000000 999983
999999 999983
999998 999983
999997 999983
999996 999983
999995 999983
999994 999983
9...

output:

1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.1.0.

result:

wrong answer 1st words differ - expected: '1.(000017000289004913083522419...247686210665581314882353...

Test #20:

score: 0
Wrong Answer
time: 0ms
memory: 1124kb

input:

426133 364441
128599 195258
959887 821056
929791 105216
155657 164864
813863 352256
552086 307253
21...

output:

1.0.1.8.0.2.1.0.4.0.0.2.0.2.0.7.0.0.

result:

wrong answer 1st words differ - expected: '1.(169278429155885314769743250...778828397463512612466764...