返回题库

AIME 2021 II · 第 13 题

AIME 2021 II — Problem 13

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the least positive integer nn for which 2n+5nn2^n + 5^n - n is a multiple of 10001000.

解析

Solution 1

Recall that 10001000 divides this expression if 88 and 125125 both divide it. It should be fairly obvious that n3n \geq 3; so we may break up the initial condition into two sub-conditions.

(1) 5nn(mod8)5^n \equiv n \pmod{8}. Notice that the square of any odd integer is 11 modulo 88 (proof by plugging in 12,32,52,721^2,3^2,5^2,7^2 into modulo 88), so the LHS of this expression goes 5,1,5,1,5,1,5,1,\ldots, while the RHS goes 1,2,3,4,5,6,7,8,1,1,2,3,4,5,6,7,8,1,\ldots. The cycle length of the LHS is 22, RHS is 88, so the cycle length of the solution is lcm(2,8)=8\operatorname{lcm}(2,8)=8. Indeed, the nn that solve this congruence are exactly those such that n5(mod8)n \equiv 5 \pmod{8}.

(2) 2nn(mod125)2^n \equiv n \pmod{125}. This is extremely computationally intensive if we try to calculate all 21,22,,2100(mod125)2^1,2^2,\ldots,2^{100} \pmod{125}, so we take a divide-and-conquer approach instead. In order for this expression to be true, 2nn(mod5)2^n \equiv n \pmod{5} is necessary; it shouldn't take too long for us to go through the 2020 possible LHS-RHS combinations, considering that nn must be odd. We only need to test 1010 values of nn and obtain n3(mod20)n \equiv 3 \pmod{20} or n17(mod20)n \equiv 17 \pmod{20}.

With this in mind we consider 2nn(mod25)2^n \equiv n \pmod{25}. By the Generalized Fermat's Little Theorem, 2201(mod25)2^{20} \equiv 1 \pmod{25}, but we already have nn modulo 2020. Our calculation is greatly simplified. The LHS's cycle length is 2020 and the RHS's cycle length is 2525, from which their least common multiple is 100100. In this step we need to test all the numbers between 11 to 100100 that n3(mod20)n \equiv 3 \pmod{20} or n17(mod20)n \equiv 17 \pmod{20}. In the case that n3(mod20)n \equiv 3 \pmod{20}, the RHS goes 3,23,43,63,833,23,43,63,83, and we need 2nn23(mod25)2^n \equiv n \equiv 2^3 \pmod{25}; clearly n83(mod100)n \equiv 83 \pmod{100}. In the case that n17(mod20)n \equiv 17 \pmod{20}, by a similar argument, n97(mod100)n \equiv 97 \pmod{100}.

In the final step, we need to calculate 2972^{97} and 2832^{83} modulo 125125:

Note that 297232^{97}\equiv2^{-3}; because 847=3761(mod125),8\cdot47=376\equiv1\pmod{125}, we get 29747(mod125)2^{97} \equiv 47\pmod{125}.

Note that 2832^{83} is 217=216212^{-17}=2^{-16}\cdot2^{-1}. We have

2163,22632=396931,24(31)2=96139,28152121,216441,217634417(31)=21733.\begin{aligned} 2^{-1}&\equiv63, \\ 2^{-2}&\equiv63^2=3969\equiv-31, \\ 2^{-4}&\equiv(-31)^2=961\equiv-39, \\ 2^{-8}&\equiv1521\equiv21, \\ 2^{-16}&\equiv441, \\ 2^{-17}&\equiv63\cdot441\equiv7\cdot(-31)=-217\equiv33. \end{aligned} This time, LHS cycle is 100100, RHS cycle is 125125, so we need to figure out nn modulo 500500. It should be n283,297(mod500)n \equiv 283,297 \pmod{500}.

Put everything together. By the second subcondition, the only candidates less than 10001000 are 283,297,783,797283,297,783,797. Apply the first subcondition, n=797n=\boxed{797} is the desired answer.

~Ross Gao (Solution)

~MRENTHUSIASM (Minor Reformatting)

Solution 2

We have that 2n+5nn(mod1000)2^n + 5^n \equiv n\pmod{1000}, or 2n+5nn(mod8)2^n + 5^n \equiv n \pmod{8} and 2n+5nn(mod125)2^n + 5^n \equiv n \pmod{125} by CRT. It is easy to check n<3n < 3 don't work, so we have that n3n \geq 3. Then, 2n0(mod8)2^n \equiv 0 \pmod{8} and 5n0(mod125)5^n \equiv 0 \pmod{125}, so we just have 5nn(mod8)5^n \equiv n \pmod{8} and 2nn(mod125)2^n \equiv n \pmod{125}. Let us consider both of these congruences separately.

First, we look at 5nn(mod8)5^n \equiv n \pmod{8}. By Euler's Totient Theorem (ETT), we have 541(mod8)5^4 \equiv 1 \pmod{8}, so 555(mod8)5^5 \equiv 5 \pmod{8}. On the RHS of the congruence, the possible values of nn are all nonnegative integers less than 88 and on the RHS the only possible values are 55 and 11. However, for 5n5^n to be 1(mod8)1 \pmod{8} we must have n0(mod4)n \equiv 0 \pmod{4}, a contradiction. So, the only possible values of nn are when n5(mod8)    n=8k+5n \equiv 5 \pmod{8} \implies n = 8k+5.

Now we look at 2nn(mod125)2^n \equiv n \pmod{125}. Plugging in n=8k+5n = 8k+5, we get 28k+58k+5(mod125)    28k328k+5(mod125)2^{8k+5} \equiv 8k+5 \pmod{125} \implies 2^{8k} \cdot 32 \equiv 8k+5 \pmod{125}. Note, for 2nn(mod125)2^n \equiv n\pmod{125} to be satisfied, we must have 2nn(mod5)2^n \equiv n \pmod{5} and 2nn(mod25)2^n \equiv n\pmod{25}. Since 28k1(mod5)2^{8k} \equiv 1\pmod{5} as 8k0(mod4)8k \equiv 0\pmod{4}, we have 22k(mod5)    k=5m12 \equiv -2k \pmod{5} \implies k = 5m-1. Then, n=8(5m1)+5=40m3n = 8(5m-1) + 5 = 40m-3. Now, we get 240m340m3(mod125)2^{40m-3} \equiv 40m-3 \pmod{125}. Using the fact that 2nn(mod25)2^n \equiv n\pmod{25}, we get 2315m3(mod25)2^{-3} \equiv 15m-3 \pmod{25}. The inverse of 22 modulo 2525 is obviously 1313, so 2313322(mod25)2^{-3} \equiv 13^3 \equiv 22 \pmod{25}, so 15m0(mod25)    m=5s15m \equiv 0 \pmod{25} \implies m = 5s. Plugging in m=5sm = 5s, we get n=200s3n = 200s - 3.

Now, we are finally ready to plug nn into the congruence modulo 125125. Plugging in, we get 2200s3200s3(mod125)2^{200s-3} \equiv 200s - 3 \pmod{125}. By ETT, we get 21001(mod125)2^{100} \equiv 1 \pmod{125}, so 2200s32347(mod125)2^{200s- 3} \equiv 2^{-3} \equiv 47 \pmod{125}. Then, 200s50(mod125)    s4(mod5)    s=5y+4200s \equiv 50 \pmod{125} \implies s \equiv 4 \pmod{5} \implies s = 5y+4. Plugging this in, we get n=200(5y+4)3=1000y+797n = 200(5y+4) - 3 = 1000y+797, implying the smallest value of nn is simply 797\boxed{797}.

~rocketsri

Solution 3 (Chinese Remainder Theorem and Binomial Theorem)

We wish to find the least positive integer nn for which 2n+5nn0(mod1000).2^n+5^n-n\equiv0\pmod{1000}. Rearranging gives

2n+5nn(mod1000).2^n+5^n\equiv n\pmod{1000}. Applying the Chinese Remainder Theorem, we get the following system of congruences:

2n+5nn(mod8),2n+5nn(mod125).\begin{aligned} 2^n+5^n &\equiv n \pmod{8}, \\ 2^n+5^n &\equiv n \pmod{125}. \end{aligned} It is clear that n3,n\geq3, from which we simplify to

5nn(mod8),(1)2nn(mod125).(2)\begin{aligned} 5^n &\equiv n \pmod{8}, \hspace{15mm} &(1) \\ 2^n &\equiv n \pmod{125}. &(2) \end{aligned} We solve each congruence separately:

  1. For (1),(1), quick inspections produce that 51,52,53,54,5^1,5^2,5^3,5^4,\ldots are congruent to 5,1,5,1,5,1,5,1,\ldots modulo 8,8, respectively. More generally, 5n5(mod8)5^n \equiv 5 \pmod{8} if nn is odd, and 5n1(mod8)5^n \equiv 1 \pmod{8} if nn is even. As 5n5^n is always odd (so is nn), we must have n5(mod8).n\equiv5\pmod{8}.

    That is, n=8r+5\boldsymbol{n=8r+5} for some nonnegative integer r.\boldsymbol{r.}

  2. For (2),(2), we substitute the result from (1)(1) and simplify:

28r+58r+5(mod125)(28)r258r+5(mod125)256r328r+5(mod125)6r328r+5(mod125).\begin{aligned} 2^{8r+5}&\equiv8r+5\pmod{125} \\ \left(2^8\right)^r\cdot2^5&\equiv8r+5\pmod{125} \\ 256^r\cdot32&\equiv8r+5\pmod{125} \\ 6^r\cdot32&\equiv8r+5\pmod{125}. \end{aligned} Note that 53=1255^3=125 and 6=5+1,6=5+1, so we apply the Binomial Theorem to the left side:

(5+1)r328r+5(mod125)[(r0)50+(r1)51+(r2)52+(r3)53++(rr)5r0(mod125)]328r+5(mod125)[1+5r+25r(r1)2]328r+5(mod125)32+160r+400r(r1)8r+5(mod125)32+35r+25r(r1)8r+5(mod125)25r2+2r+270r+5(mod125).()\begin{aligned} (5+1)^r\cdot32&\equiv8r+5\pmod{125} \\ \Biggl[\binom{r}{0}5^0+\binom{r}{1}5^1+\binom{r}{2}5^2+\phantom{ }\underbrace{\binom{r}{3}5^3+\cdots+\binom{r}{r}5^r}_{0\pmod{125}}\phantom{ }\Biggr]\cdot32&\equiv8r+5\pmod{125} \\ \left[1+5r+\frac{25r(r-1)}{2}\right]\cdot32&\equiv8r+5\pmod{125} \\ 32+160r+400r(r-1)&\equiv8r+5\pmod{125} \\ 32+35r+25r(r-1)&\equiv8r+5\pmod{125} \\ 25r^2+2r+27&\equiv0\phantom{r+5}\pmod{125}. \hspace{15mm} (*) \end{aligned} Since 1250(mod5),125\equiv0\pmod{5}, it follows that

25r2+2r+270(mod5)2r+20(mod5)r4(mod5).\begin{aligned} 25r^2+2r+27&\equiv0\pmod{5} \\ 2r+2&\equiv0\pmod{5} \\ r&\equiv4\pmod{5}. \end{aligned} That is, r=5s+4\boldsymbol{r=5s+4} for some nonnegative integer s.\boldsymbol{s.}

Substituting this back into (),(*), we get

25(5s+4)2+2(5s+4)+270(mod125)625s2+1010s+4350(mod125)10s+600(mod125)10(s+6)0(mod125)s+60(mod25).\begin{aligned} 25(5s+4)^2+2(5s+4)+27&\equiv0\pmod{125} \\ 625s^2+1010s+435&\equiv0\pmod{125} \\ 10s+60&\equiv0\pmod{125} \\ 10(s+6)&\equiv0\pmod{125} \\ s+6&\equiv0\pmod{25}. \end{aligned} Therefore, the least such nonnegative integer s\boldsymbol{s} is 19.\boldsymbol{19.}

Finally, combining the bolded results from above generates the least such positive integer nn at s=19:s=19:

n=8r+5=8(5s+4)+5=40s+37=797.\begin{aligned} n&=8r+5 \\ &=8(5s+4)+5 \\ &=40s+37 \\ &=\boxed{797}. \end{aligned} ~MRENTHUSIASM (inspired by Math Jams's 2021 AIME II Discussion)

Solution 4 (Minimal Computation)

5nn(mod8)5^n \equiv n \pmod{8} Note that 5n5,1,5,1,...5^n \equiv 5,1,5,1,... and n0,..,7n \equiv 0,..,7 so nn is periodic every [2,8]=8[2,8]=8. Easy to check that only n5(mod8)n\equiv 5 \pmod{8} satisfy. Let n=8a+5n=8a+5. Note that by binomial theorem,

28a+5=3228a7(1+15)2a7(1+30a)(mod25)2^{8a+5}=32\cdot 2^{8a} \equiv 7(1+15)^{2a} \equiv 7(1+30a)\pmod{25} So we have 7(1+30a)8a+5(mod25)    202a23    2a23+25    a24(mod25)7(1+30a) \equiv 8a+5\pmod{25} \implies 202a \equiv 23 \implies 2a \equiv 23+25 \implies a \equiv 24 \pmod{25}. Combining a24(mod25)a\equiv 24\pmod{25} with n5(mod8)n \equiv 5 \pmod{8} gives that nn is in the form of 197+200k197+200k, n=197,397,597,797n=197,397,597,797. Note that since ϕ(125)=100\phi(125)=100

2197+200k21972347Extended Euclidean Algorithm(mod125)2^{197+200k} \equiv 2^{197} \equiv 2^{-3} \equiv \underbrace{47}_{\text{Extended Euclidean Algorithm}}\pmod{125} Easy to check that only 79747(mod125),179747(mod125),279747(mod125),...\boxed{797}\equiv 47\pmod{125},{1797}\equiv 47\pmod{125},{2797}\equiv 47\pmod{125},...

~Afo

Solution 5 (STEP by step transform)

1. The desired nn has the form n=m+20l+100p,n = m + 20l + 100p, where m,l,pm, l, p are integers and m<20.m < 20.

Really:

(2m+20(m+20))(2mm)=(2m+202m)20.(2^{m+ 20} – (m + 20)) – (2^m – m) = (2^{m+ 20} – 2^m) – 20. The first term is a multiple of 100100(Claim).

We denote step an increase in mm by 20. At each step, the divisibility by 1010 is preserved, the number of tens is reduced by 22.

(2m+100(m+100))(2mm)=(2m+1002m)100.(2^{m+ 100} – (m + 100)) – (2^m – m) = (2^{m+ 100} – 2^m) – 100. We denote STEP an increase in mm by 100.100. At each STEP, the first term is a multiple of 1000,1000, which means that at each STEP the divisibility by 100100 is preserved, the number of hundreds decreases by 1.1.

2. If the expression 2n+5nn2^n + 5^n – n is a multiple of 1000,1000, the number nn is odd (2n2^n is even, 5n5^n is odd), which means that 5n5^n ends in 125.125. Therefore, the number 2nn2^n – n ends in 875.875.

3. 233=83=5.2^3 – 3 = 8 – 3 = 5. The tens digit is even (0),(0), it cannot be transformed into 77 in several steps, since at each step this digit changes by 2.2.

17=203,17 = 20 – 3, so 217+232^{17} + 2^3 is a multiple of 10,10, (21717)+(233)=217+2320(2^{17} – 17) + (2^3 – 3) = 2^{17} + 2^3 – 20 is a multiple of 10.10.

217(mod100)=((210(mod100))(27(mod100)))(mod100)=(2428)(mod100)=72.2^{17} \pmod {100} = ((2^{10} \pmod {100}) \cdot (2^7 \pmod {100})) \pmod {100} = (24 \cdot 28) \pmod {100} = 72. (21717)(mod100)=55.(2^{17} – 17 ) \pmod {100} = 55. The tens digit 55 is odd, subtracting 22 at each step in 44 steps of 2020 will turn it into 7.7. So

(29797)(mod100)=75.(2^{97} – 97 ) \pmod {100} = 75. 297(mod1000)=((249(mod1000))27)(mod1000)=672.2^{97} \pmod {1000} = ((2^{49} \pmod {1000}) \cdot 2^7) \pmod {1000} = 672. (29797)(mod1000)=575.(2^{97} – 97 ) \pmod {1000} = 575. We transform 55 into 88 in 77 STEPS, so

(2797797)(mod1000)=875.(2^{797} – 797 ) \pmod {1000} = 875. (5797+2797797)(mod1000)=0.(5^{797} + 2^{797} – 797 ) \pmod {1000} = 0. Note, that for n=797+1000k,kn = 797 + 1000k, k is an integer, the expression 2n+5nn2^n + 5^n – n is a multiple of 1000.1000.

Claim

The numbers 2n+25k+2n=2n(225k+1)2^{n+2\cdot 5^k}+2^n=2^n(2^{2\cdot 5^k}+1) and 2n+45k2n=2n(245k1)2^{n+4\cdot 5^k}-2^n=2^n(2^{4\cdot 5^k}-1)

are a multiple of 10k+110^{k+1} for any n>kn > k, where n,kn,k are an integer.

Proof

First, if m(mod10)4,m \pmod{10} \equiv 4, then (m4m3+m2m+1)(mod10)64+64+1=5.(m^4 – m^3 + m^2 – m + 1) \pmod{10} \equiv 6 – 4 + 6 – 4 + 1 = 5.

24n+2(mod10)4.2^{4n+2}\pmod{10} \equiv 4. So, if the number 24n+2+12^{4n+2} + 1 is a multiple of 5k5^k, then 220n+10+12^{20n+10} + 1 is a multiple of 5k+1.5^{k +1}.

Really, denote m=24n+2,m = 2^{4n+2}, then, 220n+10+1=m5+1=(m+1)(m4m3+m2m+1).2^{20n+10} + 1 = m^5 + 1 = (m + 1)\cdot (m^4 – m^3 + m^2 – m + 1).

The first factor is a multiple of 5k5^k, the second factor is a multiple of 5.5. Their product is a multiple of 5k+1.5^{k +1}.

For odd n,n, using Newton's binomial for 4n4^n, we get 22n+12^{2n} + 1 is a multiple of 5.5.

22n+1=4n+1=(51)n+1=5nn5n1+...+5n\begin{aligned} 2^{2n} + 1 = 4^n + 1 = (5 - 1)^n + 1 = 5^n -n\cdot 5^{n-1} +...+5n\end{aligned} If n=5k,n = 5^k, then n>k,n > k, each term is a multiple of 5n5n.

Therefore, the number 45k+14^{5^k}+1 is a multiple of 5k+15^{k+1} and 2k+1(225k+1)2^{k+1} (2^{2\cdot 5^k}+1) is a multiple of 10k+110^{k+1}.

The difference

2n+45k2n=2n(245k1)=2n(225k1)(225k+1)2^{n+4\cdot 5^k}-2^n=2^n(2^{4\cdot 5^k}-1) = 2^n(2^{2\cdot 5^k}-1)(2^{2\cdot 5^k}+1) is a multiple of 10k+1.10^{k+1}.

vladimir.shelomovskii@gmail.com, vvsss

Solution 6 (Art of Enumeration)

Problem require us to find minimum nn where 2n+5nn2^n + 5^n - n is a multiple of 10001000.

Since we already know that multiplication does not affect mod,we can simply just focus on enumerating and hope to find some pattern.

The pattern of 5n5^n is pretty simple, it starts with 5,25, and then repeat the pattern 125,625, in other words, 5n125mod10005^n\equiv 125 \mod{1000} when n is odd, and 5n625mod10005^n\equiv 625 \mod{1000} when n is even if we ignore n=1n=1 and n=2n=2.

The pattern of 2n2^n, however, is quite long. In fact, it happens when n=103n=103, where 2103008mod10002^{103} \equiv 008 \mod{1000}. More specifically, the pattern starts with n=3n=3, which means for every 100 n, 2nmod10002^n \mod 1000 will repeat in a loop:

008,016,032,064,128,256,512,024,048,096,008{,}016{,}032{,}064{,}128{,}256{,}512{,}024{,}048{,}096{,} 192,384,768,536,072,144,288,576,152,304,192{,}384{,}768{,}536{,}072{,}144{,}288{,}576{,}152{,}304{,} 608,216,432,864,728,456,912,824,648,296,608{,}216{,}432{,}864{,}728{,}456{,}912{,}824{,}648{,}296{,} 592,184,368,736,472,944,888,776,552,104,592{,}184{,}368{,}736{,}472{,}944{,}888{,}776{,}552{,}104{,} 208,416,832,664,328,656,312,624,248,496,208{,}416{,}832{,}664{,}328{,}656{,}312{,}624{,}248{,}496{,} 992,984,968,936,872,744,488,976,952,904,992{,}984{,}968{,}936{,}872{,}744{,}488{,}976{,}952{,}904{,} 808,616,232,464,928,856,712,424,848,696,808{,}616{,}232{,}464{,}928{,}856{,}712{,}424{,}848{,}696{,} 392,784,568,136,272,544,088,176,352,704,392{,}784{,}568{,}136{,}272{,}544{,}088{,}176{,}352{,}704{,} 408,816,632,264,528,056,112,224,448,896,408{,}816{,}632{,}264{,}528{,}056{,}112{,}224{,}448{,}896{,} 792,584,168,336,672,344,688,376,752,504792{,}584{,}168{,}336{,}672{,}344{,}688{,}376{,}752{,}504

Moreover, we might found that for every 20 consequtive integer, 2nmod1002^n \mod 100 will repeat in a loop. Thus, by adding 5n5^n to first twenty element, which is n=3n=3 to n=22n=22, we can get a pattern of last two digit of 2n+5nmod10002^n + 5^n \mod{1000}, which is

33,41,57,89,53,33{,}41{,}57{,}89{,}53{,} 81,37,49,73,21,81{,}37{,}49{,}73{,}21{,} 17,09,93,61,97,17{,}09{,}93{,}61{,}97{,} 69,13,01,77,2969{,}13{,}01{,}77{,}29

By subtracting n, we can also get following sequence:

30,37,52,83,46,30{,}37{,}52{,}83{,}46{,} 73,28,39,62,09,73{,}28{,}39{,}62{,}09{,} 04,95,78,45,80,04{,}95{,}78{,}45{,}80{,} 51,94,81,56,0751{,}94{,}81{,}56{,}07

Noticing that only when n=3n=3 and n=17n=17, 2n+5nn0mod102^n+5^n-n \equiv 0 \mod{10}, so n=3+20kn=3+20k and 17+20k17+20k are our possible candidates. However, since the length of our pattern is 20, we know that n=3+20kn=3+20k is definetely not answer, which only left us n=17+20kn=17+20k.

Now, we calculate the last three digit of 2n+5nn2^n+5^n-n at n=17,n=37,n=57,n=77,n=97n=17, n=37, n=57, n=77, n=97, which is 180,560,940,320,700180{,}560{,}940{,}320{,}700.

Since the pattern will repeat for every 100 consequtive integer, the only thing that could possibly change last three digit is -n, noticing that only when n=97n=97, 2n+5nn0mod1002^n+5^n-n \equiv 0 \mod 100. So the answer only could be n=97+100k2n=97+100k_2, by subtracting 700, which means adding 700 to n, we can get our final answer n=797n=\boxed{797}.

Also, by this method we can ensure that 2n+5nn1000\frac{2^n+5^n-n}{1000} is an integer only if n=797+1000kn=797+1000k, all the calculation can be done without a calculator (about 15 minutes or so), need some patience though.

If you are wondering, 2103=10,141,204,801,825,835,211,973,625,643,0082^{103} = 10{,}141{,}204{,}801{,}825{,}835{,}211{,}973{,}625{,}643{,}008.

~henry_in_out

Note

If you are wondering, 2797+57977971000\frac{2^{797}+5^{797}-797}{1000} is equal to the following 555555-digit number:

119,975,745,111,650,476,385,411,555,010,245,228,283,196,935,699,128,663,834,119{,}975{,}745{,}111{,}650{,}476{,}385{,}411{,}555{,}010{,}245{,}228{,}283{,}196{,}935{,}699{,}128{,}663{,}834{,} 986,755,809,416,868,468,175,224,221,677,450,271,793,186,899,399,171,810,240,986{,}755{,}809{,}416{,}868{,}468{,}175{,}224{,}221{,}677{,}450{,}271{,}793{,}186{,}899{,}399{,}171{,}810{,}240{,} 468,879,630,691,320,210,517,618,332,910,064,430,017,422,410,572,497,874,327,468{,}879{,}630{,}691{,}320{,}210{,}517{,}618{,}332{,}910{,}064{,}430{,}017{,}422{,}410{,}572{,}497{,}874{,}327{,} 116,662,273,049,144,209,532,072,513,248,821,826,125,454,909,131,367,242,561,116{,}662{,}273{,}049{,}144{,}209{,}532{,}072{,}513{,}248{,}821{,}826{,}125{,}454{,}909{,}131{,}367{,}242{,}561{,} 087,064,439,357,641,814,942,784,478,465,638,163,997,895,630,266,780,260,171,087{,}064{,}439{,}357{,}641{,}814{,}942{,}784{,}478{,}465{,}638{,}163{,}997{,}895{,}630{,}266{,}780{,}260{,}171{,} 070,180,244,384,687,160,174,154,618,815,254,719,975,476,350,789,415,969,908,070{,}180{,}244{,}384{,}687{,}160{,}174{,}154{,}618{,}815{,}254{,}719{,}975{,}476{,}350{,}789{,}415{,}969{,}908{,} 281,131,044,034,581,864,573,596,962,567,993,948,922,431,587,652,735,290,158,281{,}131{,}044{,}034{,}581{,}864{,}573{,}596{,}962{,}567{,}993{,}948{,}922{,}431{,}587{,}652{,}735{,}290{,}158{,} 293,666,986,616,531,419,688,663,485,548,648,995,509,247,893,796,528,146,109,293{,}666{,}986{,}616{,}531{,}419{,}688{,}663{,}485{,}548{,}648{,}995{,}509{,}247{,}893{,}796{,}528{,}146{,}109{,} 144,143,744,650,882,271,050,771,309,301,498,467,898,226,649,089,924,520,539,144{,}143{,}744{,}650{,}882{,}271{,}050{,}771{,}309{,}301{,}498{,}467{,}898{,}226{,}649{,}089{,}924{,}520{,}539{,} 820,344,035,886,481,987,499,589,845,734,228,834,491,187.820{,}344{,}035{,}886{,}481{,}987{,}499{,}589{,}845{,}734{,}228{,}834{,}491{,}187.

Video Solution

2021 AIME II #13

MathProblemSolvingSkills.com

Video Solution by Interstigation

Did not use any advanced method, easily understandable:

https://youtu.be/ThF67J8iaS0

~Interstigation