“贪心的沈拓”系列题目
2025-09-20 22:28:24
发布于:浙江
(留个句号吧下次来你就是古人了
)
欢迎观看我的Markdown学习史
出题的dalao:@无敌小浅大王 @155****6772(其实就是本贴的作者)@林小吉
想了解沈拓的看这个链接描述
介绍一下背景:
作为贪心算法转世的沈拓,曾经在杭州xiao码集训营XP03-A2班,由于他天天贪污食堂的饭菜,导致受到全班讨伐,创造了下列题目轰炸ta
—————————————————————————————————————
Day 0上午(2025-08-10)
U62303.贪心的沈拓
直接看题目描述(题不是我写的是这位兄台@无敌小浅大王):
/贪心的沈拓)总是在食堂拿走很多饭菜,每天出现的菜一共有n种,每一道菜的数量也不相同,可是贪心的沈拓因为拿走很多饭菜的原因,会受到大家的讨伐,一旦沈拓“贪”到的食物总量超过k个,那么沈拓就会"思慕",沈拓向你们求助他应该如何在不"思慕"的情况下在哪一个区间内“贪”到的饭菜最多
没有则输出-1/
有可能你食堂的资源点就是被ta清空的!!写起!!!
还有这题也是写贪心沈拓的
—————————————————————————————————————
Day 0下午
那俩出题的兄台告诉我ta俩的题目数据是打表打出来的,大概率AC不了,服了
我会尽快创造出新的题目de!
Day 1(实际过去好久了)(2025-08-31)
沈拓那道题也是由作者自己做出来了,快去看看吧!
(但是作者自己又加了3个测试点,用那些AC方法最后一个测试点过不了@无敌小浅大王 强烈建议改良
我自己造了道很简单的题XDU70062.贪心的沈拓2,快过来写!!!!!!
—————————————————————————————————————
Day 2(2025-09-07)
bro的团队的朋友也出了一道题T66833.TEAMS-沈拓好贪心,快过来看看吧!
——(插播一则广告
我和“TEAMS”的朋友们都在这里等你,快来一起学习吧!
Day 2下午 bro要的U70062.贪心的沈拓2的题解ta来了!!!!(作者自己看不懂了,
dalao们自己评吧(题解给出者:@无敌小浅大王(棒!!!牛逼!!!
代码1:(作者自己看不懂了,dalao们自己评吧(非人解法,人解法在下面)
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
using namespace std;
#define MAX_LIMIT_COUNT 1000000
#define MIN_HEIGHT 1
#define MAX_HEIGHT 999999999
#define TEN 10
#define HUNDRED 100
#define THOUSAND 1000
#define TEN_THOUSAND 10000
#define HUNDRED_THOUSAND 100000
#define MILLION 1000000
int shenTuoHeight;
int placeCount;
int limitsArray[MAX_LIMIT_COUNT];
int minimumLimit;
int finalResult;
void readInputData();
void findMinimumLimit();
void checkIfLimitTooLow();
int getUnitsDigit(int number);
int getTensDigit(int number);
int getHundredsDigit(int number);
int getThousandsDigit(int number);
int getTenThousandsDigit(int number);
int getHundredThousandsDigit(int number);
int roundToTens(int number);
int roundToHundreds(int number);
int roundToThousands(int number);
int roundToTenThousands(int number);
int roundToHundredThousands(int number);
int roundToMillions(int number);
void processUnitsRounding();
void processTensRounding();
void processHundredsRounding();
void processThousandsRounding();
void processTenThousandsRounding();
void processHundredThousandsRounding();
void processMillionsRounding();
void outputResult();
void doNothing();
int addNumbers(int a, int b);
int subtractNumbers(int a, int b);
int main()
{
shenTuoHeight = 0;
placeCount = 0;
minimumLimit = 0;
finalResult = 0;
for (int i = 0; i < MAX_LIMIT_COUNT; i++)
{
limitsArray[i] = 0;
}
readInputData();
findMinimumLimit();
checkIfLimitTooLow();
finalResult = shenTuoHeight;
processUnitsRounding();
processTensRounding();
processHundredsRounding();
processThousandsRounding();
processTenThousandsRounding();
processHundredThousandsRounding();
processMillionsRounding();
outputResult();
doNothing();
return 0;
}
void readInputData()
{
int temp1, temp2;
int i;
cin >> temp1 >> temp2;
shenTuoHeight = temp1;
placeCount = temp2;
for (i = 0; i < placeCount; i++)
{
cin >> limitsArray[i];
}
for (i = placeCount; i < MAX_LIMIT_COUNT; i++)
{
limitsArray[i] = 0;
}
}
void findMinimumLimit()
{
if (placeCount <= 0)
{
minimumLimit = MAX_HEIGHT;
return;
}
minimumLimit = limitsArray[0];
for (int i = 1; i < placeCount; i++)
{
if (limitsArray[i] < minimumLimit)
{
minimumLimit = limitsArray[i];
}
else
{
}
}
}
void checkIfLimitTooLow()
{
if (minimumLimit < shenTuoHeight)
{
cout << -1 << endl;
exit(0);
}
else
{
int x = 1;
x = x + 1;
x = x - 1;
}
}
int getUnitsDigit(int number)
{
int digit;
digit = number % TEN;
return digit;
}
int getTensDigit(int number)
{
int temp = number / TEN;
int digit = temp % TEN;
return digit;
}
int getHundredsDigit(int number)
{
int temp = number / HUNDRED;
int digit = temp % TEN;
return digit;
}
int getThousandsDigit(int number)
{
int temp = number / THOUSAND;
int digit = temp % TEN;
return digit;
}
int getTenThousandsDigit(int number)
{
int temp = number / TEN_THOUSAND;
int digit = temp % TEN;
return digit;
}
int getHundredThousandsDigit(int number)
{
int temp = number / HUNDRED_THOUSAND;
int digit = temp % TEN;
return digit;
}
int roundToTens(int number)
{
int units = getUnitsDigit(number);
int result;
if (units >= 5)
{
result = number + (TEN - units);
}
else
{
result = number - units;
}
return result;
}
int roundToHundreds(int number)
{
int tens = getTensDigit(number);
int remainder = number % HUNDRED;
int result;
if (tens >= 5)
{
result = number + (HUNDRED - remainder);
}
else
{
result = number - remainder;
}
return result;
}
int roundToThousands(int number)
{
int hundreds = getHundredsDigit(number);
int remainder = number % THOUSAND;
int result;
if (hundreds >= 5)
{
result = number + (THOUSAND - remainder);
}
else
{
result = number - remainder;
}
return result;
}
int roundToTenThousands(int number)
{
int thousands = getThousandsDigit(number);
int remainder = number % TEN_THOUSAND;
int result;
if (thousands >= 5)
{
result = number + (TEN_THOUSAND - remainder);
}
else
{
result = number - remainder;
}
return result;
}
int roundToHundredThousands(int number)
{
int tenThousands = getTenThousandsDigit(number);
int remainder = number % HUNDRED_THOUSAND;
int result;
if (tenThousands >= 5)
{
result = number + (HUNDRED_THOUSAND - remainder);
}
else
{
result = number - remainder;
}
return result;
}
int roundToMillions(int number)
{
int hundredThousands = getHundredThousandsDigit(number);
int remainder = number % MILLION;
int result;
if (hundredThousands >= 5)
{
result = number + (MILLION - remainder);
}
else
{
result = number - remainder;
}
return result;
}
void processUnitsRounding()
{
int units = getUnitsDigit(finalResult);
if (units >= 5)
{
int afterRounding = roundToTens(finalResult);
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
else
{
}
}
else
{
}
}
void processTensRounding()
{
int tens = getTensDigit(finalResult);
if (tens >= 5)
{
int afterRounding = roundToHundreds(finalResult);
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
else
{
}
}
else
{
int a = 10;
int b = 20;
int c = a + b;
}
}
void processHundredsRounding()
{
int hundreds = getHundredsDigit(finalResult);
if (hundreds >= 5)
{
int afterRounding = roundToThousands(finalResult);
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
else
{
}
}
else
{
for (int i = 0; i < 5; i++)
{
int x = i * 2;
}
}
}
void processThousandsRounding()
{
int thousands = getThousandsDigit(finalResult);
if (thousands >= 5)
{
int afterRounding = roundToTenThousands(finalResult);
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
else
{
}
}
else
{
}
}
void processTenThousandsRounding()
{
int tenThousands = getTenThousandsDigit(finalResult);
if (tenThousands >= 5)
{
int afterRounding = roundToHundredThousands(finalResult);
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
else
{
}
}
else
{
int temp = 1;
temp = temp * 1;
}
}
void processHundredThousandsRounding()
{
int hundredThousands = getHundredThousandsDigit(finalResult);
if (hundredThousands >= 5)
{
int afterRounding = roundToMillions(finalResult);
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
else
{
}
}
else
{
}
}
void processMillionsRounding()
{
int millions = finalResult / MILLION;
if (millions >= 5)
{
int afterRounding = (millions + 1) * MILLION;
if (afterRounding <= minimumLimit)
{
finalResult = afterRounding;
}
}
}
void outputResult()
{
cout << finalResult << endl;
}
void doNothing()
{
int a = 0;
a = a + 0;
for (int i = 0; i < 1; i++)
{
}
}
int addNumbers(int a, int b)
{
return a + b;
}
int subtractNumbers(int a, int b)
{
return a - b;
}
这是人类解法(作者终于能看懂了)代码2:
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
vector<int> limits(m);
for (int i = 0; i < m; ++i)
cin >> limits[i];
int min_h = *min_element(limits.begin(), limits.end());
if (min_h < n)
{
cout << -1 << endl;
return 0;
}
int current = n;
int step = 10;
while (step <= min_h)
{
int digit = (current % step) / (step / 10);
if (digit >= 5)
{
int next_h = current + (step - (current % step));
if (next_h <= min_h) current = next_h;
else break;
}
step *= 10;
}
cout << current << endl;
return 0;
}
Day 3(2025-09-20)
解锁了我的Markdown学习史(记录自己何时学会了Markdown排版的一些用法)
全部评论 42
顶
2025-08-31 来自 浙江
2顶
2025-08-07 来自 浙江
2同意
2025-08-07 来自 浙江
2必须同意a不然吃的都被贪光了
2025-08-07 来自 浙江
1这题不会有问题吧
2025-08-07 来自 浙江
1不知道,可以问那个出题的兄台
2025-08-07 来自 浙江
1
好长啊
1周前 来自 浙江
1长是必然的,以后我们还会出一些别的题
1周前 来自 浙江
0
.
2025-09-14 来自 浙江
1。
2025-09-14 来自 浙江
1
看不懂第1个,但是顶
2025-09-14 来自 浙江
1呵呵
呵呵呵
呵呵呵呵呵呵呵呵呵呵呵呵呵呵
呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵2025-09-07 来自 浙江
1呵呵
呵呵呵
呵呵呵呵呵呵呵呵呵呵呵呵呵呵
呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵2025-09-07 来自 浙江
0
贪心的沈拓2
没太大压力,题解在里面 ↑2025-09-07 来自 广东
1bro牛逼
2025-09-07 来自 浙江
0
顶
2025-09-07 来自 广东
1顶
2025-09-07 来自 浙江
1顶
2025-09-04 来自 浙江
1顶
2025-09-04 来自 浙江
1好,顶,赞!
2025-08-31 来自 浙江
1顶
2025-08-31 来自 浙江
1顶
2025-08-31 来自 浙江
1顶
2025-08-31 来自 浙江
1顶
2025-08-31 来自 浙江
1《不怕思慕的精神》
2025-08-31 来自 江苏
12025-08-07 来自 浙江
1顶
2025-08-07 来自 浙江
1
有帮助,赞一个