In output specification "The second line is a series of slot sizes (in descending order) separated by spaces"
Input:
- Code: Select all
1
10
1000000
My Output:
- Code: Select all
1
1
1
#
10
5@2
8@2
#
1000000
29@25@23@11@9
832040@121393@46368@144@55
#
Note: Here # represent the blank line("\n"), and @ represent the Space(" ")
But judge output is:
- Code: Select all
1
1@
1@
#
10
5@2@
8@2@
#
1000000
29@25@23@11@9@
832040@121393@46368@144@55@
#
Note: Here # represent the blank line("\n"), and @ represent the Space(" ")

