From a588dcb40a06780acacdd9dc479ee92d0639f960 Mon Sep 17 00:00:00 2001 From: Segcolt Date: Sun, 5 Apr 2026 14:04:36 -0300 Subject: [PATCH] Little change --- .../G. The 67th Iteration of \"Counting is Fun\".cpp" | 11 ----------- 1 file changed, 11 deletions(-) diff --git "a/Codeforces Round 1090 (Div. 4)/G. The 67th Iteration of \"Counting is Fun\".cpp" "b/Codeforces Round 1090 (Div. 4)/G. The 67th Iteration of \"Counting is Fun\".cpp" index 650a6ea..eb38ac0 100644 --- "a/Codeforces Round 1090 (Div. 4)/G. The 67th Iteration of \"Counting is Fun\".cpp" +++ "b/Codeforces Round 1090 (Div. 4)/G. The 67th Iteration of \"Counting is Fun\".cpp" @@ -114,17 +114,6 @@ void solve() pref[i] += pref[i - 1]; } - auto fpow = [&](ll a, ll p) { - ll ans = 1; - rep(i, 61) { - if ((p >> i) & 1) { - (ans *= a) %= mod; - } - (a *= a) %= mod; - } - return ans; - }; - nrep(i, 1, m) { ll r = pref[i]; ll l = pref[i - 1];