In a codeforces group, for educational purpose, I want all members can see other's submissions.
I set "Allow view other submissions to Anyone" but it does not work!
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
In a codeforces group, for educational purpose, I want all members can see other's submissions.
I set "Allow view other submissions to Anyone" but it does not work!
I make a problem in polygon, that contains a math formula.
In preview, the formula appears normally. But in mashup contest, the formula do not show.
Anyone know why?
We define a string of digits is symmetric as if we obtain the same results when reading it from right to left or vice versa. Example: 3, 121, 78987, ... are symetric.
A string S has k digits is called supersymmetric if following conditions are satisfied:
For example: 0, 11, 22322,... are supersymmetric numbers.
A number is almost-supersymmetric (the first digit is always different from 0) is defined as if we could change the position of some of its digits to make a supersymmetric number (note: after changing, the first digit may be zero). For example: 8404000 is almost-supersymmetric, since 0408040 is supersymmetric.
Find out how many almost-supersymmetric numbers between l and r (1 <= l <= r <= 1e50000). Print the remainder for 1e9+7.
Example 1: Input l = 3111120 r = 3111125 Output: 2
Note: 2 almost-supersymmetric numbers are 3111122 and 3111123.
Example 2: Input l = 1 r = 100 Output: 19
Note: almost-supersymmetric numbers are 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44, 55, 66, 77, 88, 99, 100.
Name |
---|