Solution 1
There are 91−19+1=73 numbers in the sequence. Since the terms of the sequence can be at most 1 apart, all of the numbers in the sequence can take one of two possible values. Since 73546=7R35, the values of each of the terms of the sequence must be either 7 or 8. As the remainder is 35, 8 must take on 35 of the values, with 7 being the value of the remaining 73−35=38 numbers. The 39th number is ⌊r+10019+39−1⌋=⌊r+10057⌋, which is also the first term of this sequence with a value of 8, so 8≤r+10057<8.01. Solving shows that 100743≤r<100744, so 743≤100r<744, and ⌊100r⌋=743.
Solution 2 (Faster)
Recall by Hermite's Identity that ⌊x⌋+⌊x+n1⌋+...+⌊x+nn−1⌋=⌊nx⌋ for positive integers n, and real x. Similar to above, we quickly observe that the last 35 take the value of 8, and remaining first ones take a value of 7. So, ⌊r⌋≤...≤⌊r+10018⌋≤7 and ⌊r+1⌋≥...≥⌊r+10092⌋≥8. We can see that ⌊r⌋+1=⌊r+1⌋. Because ⌊r⌋ is at most 7, and ⌊r+1⌋ is at least 8, we can clearly see their values are 7 and 8 respectively. So, ⌊r⌋=...=⌊r+10018⌋=7, and ⌊r+10092⌋=...=⌊r+1⌋=8. Since there are 19 terms in the former equation and 8 terms in the latter, our answer is ⌊nx⌋=546+19⋅7+8⋅8=743
~ minor edit by arjunkhokhar
Note
In the contest, you would just observe this mentally, and then calculate 546+19⋅7+8⋅8=743, hence the speed at which one can carry out this solution.
Solution 3 (Algebra)
Notice how all terms in this series is in the form ⌊r+100k⌋, where 19≤k≤91. This then implies that there are a total of 73 terms in this series.
If every term is the same, i.e., 73⌊r+10019⌋=546, then ⌊r+10019⌋=7546≈7. However, because this isn't exactly 7, this implies that the values in the series are mixed between 7 and 8, so we need to do a bit more work to find out the value of k such that ⌊r+100k⌋=7 and ⌊r+100k+1⌋=8.
We see that if we have a values that return 7 and b values that return 8, then a+b=73.
Additionally, because the total sum of all values is 546, we have 7a+8b=546.
Solving the system returns b=35, so 35 terms return 8 and the others return 7.
Then, it is notable that the last 35 terms of the series will return 8 (as they are the ones that maximize the value of r), and of course, we have k+1=91−35+1=57. So k=56.
Therefore, the point of change occurs in the step from ⌊r+10056⌋ to ⌊r+10057⌋.
We now use the definition of ⌊r+10057⌋=8, because if ⌊r+10056⌋=7, that would imply that {r}=100100−57=10043 (as ⌊10056+43⌋=0 and ⌊10057+43⌋=1)
Then, through the definition of {r}, we see that r−⌊r⌋={r}, and because ⌊r⌋=7 and {r}=10043, we get r=100743=7.43.
⌊100r⌋=⌊100⋅7.43⌋=⌊743⌋= 743
~Pinotation