Skip to content

Commit 035f369

Browse files
committed
Codeforces Round 1079 (Div. 2)
1 parent 0e7cfac commit 035f369

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/_posts/acm/codeforces/CodeforcesRound1079.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ void solve() {
164164

165165
这个问题主要在于,对于比较小的值,前者的写法内循环次数会更高,而后者的写法可以有效降低内循环次数。
166166

167-
至于为啥对于较大的数值,并不会有较大影响呢?很简单,因为对于 `1` 而言,其需要固定遍历所有值,而对于超过 $\frac{n}/x$ 的值而言,之多只需要遍历 $x$ 个值即可
167+
至于为啥对于较大的数值,并不会有较大影响呢?很简单,因为对于 `1` 而言,其需要固定遍历所有值,而对于超过 $\frac{n}{x}$ 的值而言,之多只需要遍历 $x$ 个值即可
168168

169169
## AC code
170170

0 commit comments

Comments
 (0)