NOIP 2025 SC 迷惑行为大赏

· · 休闲·娱乐

1. 前言

本迷惑行为大赏旨在收集 SC 选手在 NOIP 比赛中的神之一手的操作。如果您没有在该迷惑行为大赏中看到你的迷惑代码,可能是笔者眼瞎,请私信联系添加。

免责声明:代码内容,不代表笔者观点

2. 基础数据

经过 vscode 统计(不排除诈骗),在 697 名选手的 2283 份代码中:

3. 正文

注:除标注或包含整个代码所有要素外,其他均为节选内容。

SC-0008

我是**

candy.cpp:

//??? T1 这么简单?
//for I know I will always go with you~ 

query.cpp:

//10 组数据,5000 
//考虑小 X 必然是按性价比从大往小买了一个前缀,最多在后面买了一个 
//考虑这么买会出问题必然是因为最后一个/两个 1 可以被某一个 2 替换  
//枚举最后一个 1 的位置 
//我是傻逼 

SC-0009

Goodbye OI.

query.cpp

// Goodbye OI. May our dream never die.

// Perhaps I will in the future always be remembered as the joker, talked by future generation as a failure. 
// Hope I won't care when I realize.
// May I be able to smile at these years.

SC-0011

题解区大蛇,T4 放签到

query.cpp

/*

问题是对于长度在一个区间内的最大字段和。

但是这是个鸡毛的ds啊?n=5e4,q=1e3

哦哦不对不对,对于每个点都要求。

操感觉比T2简单,考虑直接滑动窗口维护出每个位置向左长度在[l,r]内的区间的最大值。

询问单个点的时候,对于向右找到第一个L段能覆盖这个位置的点。query这一段区间的最小值,容易发现我们维护了

左右都做一遍就行了

然后corner是,要求R<=L*2-1

如果R>=L*2怎么办?

注意可以预处理!!!!!

按照二进制highbit分组,则序列至多被分为了log组,每组预处理即可。

组内任意两点都是合法的!!!! 

不亏是noip,就会在T4放签到
*/

注:该选手给剩下三道题也写了题解,最终分数 95 + 28 + 24 + 65 = 212。

SC-0013

听天由命

sale.cpp

//考虑所有已经花费了m-2空间的方案
//这些方案前面肯定都是最优的
//第一个1在第一个2前面并且此时后面的第二个1+第一个1>第一个2的原价,那么才合法
//直接枚举这三个位置(i,j,k),那么问题转化成[1~i]的和为m-1的方案数
//考虑七类点
//1:两个点都在i左边,那么上背包统计
//2:分别一个点在i两边,因为我们强制让第一个2在j上面,所以这个点只能为1,注意把j的另外一个点特判掉
//3:左右点都在(i,j)之间,那么此时情况不存在,break
//4:左右点在j两边,只能选2
//5:左右点在(j,k)之间,选2
//6:左右点在k两边,只能选2
//7:左右点在k右边,和第一类一起背包
//直接枚举i,j,k然后按照i递增,k递减的顺序背包
//先预处理出前后缀背包
//枚举i,k时背包合并
//如果j合法,那么强制哪个点只和i的位置有关
//j的范围就是(i+1~i右边第一个1的右端点)

query.cpp

//听天由命

SC-0014

modint 爱好者

sale.cpp

struct modint{
    int val;modint():val(0){;}
    inline int Mod(int x){return x>=mod?x-mod:x;}
    inline int norm(int x){return x<0?x+mod:x;}
    modint(int v):val(norm(Mod(v))){;}
    modint(long long v):val(norm(v%mod)){;}
    modint operator -(){return norm(-val);}
    modint& operator +=(modint t){val=Mod(val+t.val);return *this;}
    modint& operator -=(modint t){val=norm(val-t.val);return *this;}
    modint& operator *=(modint t){val=1ll*val*t.val%mod;return *this;}
    modint operator +(modint t)const{return modint(*this)+=t;}
    modint operator -(modint t)const{return modint(*this)-=t;}
    modint operator *(modint t)const{return modint(*this)*=t;}
    friend istream& operator >>(istream &is,modint &val){return is>>val.val;}
    friend ostream& operator <<(ostream &os,modint val){return os<<val.val;}
}frac[N],inv[N],ans,p[N];

SC-0020

不惧黑暗

该选手 4 份代码的开头都有如下内容

// Go in my style.
// Not afraid to dark.
// Beat.

SC-0024

游戏王

该选手 4 份代码的开头都有如下内容

/*
Terminator
Damage: +310
Crit Damage: +250%
Bonus Attack Speed: +40%

Divides your Crit Chance by 4!

Shoot 3 arrows at once.
Can damage enderman.

Ability: Salvation  LEFT CLICK
Can be casted after landing 3 hits.
Shoot a beam, penetrating up to 5 foes.
The beam always crits.
Soulflow Cost: 2

This item can be reforged!
LEGENDARY BOW
*/

SC-0029

国赛梦

sale.cpp

/*
那道T2毁了我的国赛梦。
我一直以为我能做得到来着。
我也不知道为什么,我练了那么多dp,还是做不出来。
明明学弟他们都能一眼秒的题,我总是要推一两个小时还无果。
怎么连200都没有啊!今年能不能1=都说不定
害。
梦该醒了。
我一直不太喜欢在注释里写东西以上迷惑大赏,几年了,这还是第一次。
如果我是童子功呢。如果我从小学就开始进复赛了呢。
我是不是就能进国赛了。
好难过。
怎么在考场里哭出来了。
我为什么什么都做不到。 
至于我是谁,认识我的应该能从代码里看出来,不认识我的也没必要知道我是谁。 
下辈子还是当个文化生吧。
好难受。 
*/

SC-0035

背键盘大蛇

tree.cpp

#include <bits/stdc++.h>
using namespace std;

int main() {
    freopen("tree.in", "r", stdin);
    freopen("tree.out", "w", stdout);
    ios::sync_with_stdio(false), cin.tie(nullptr);
    cout << "qwertyuiopasdfghjklzxcvbnm\n";
    return 0;
}

SC-0044

inc1ude_c 老师好!

该选手 4 份代码的开头都有如下内容

//freopen
//My Luogu username: inc1ude_c | My Bangumi ID: include_c
//Go play Mahoushoujonomanosaban. Thanks.(Did I spell it right?)
//Go watch Bangdream It's MyGO!!!!!. Thanks.
//T~G~W~Group! ChihayaAnon is cute.
//251Sec is so strong.

SC-0052

题解区大蛇,启动非常模式!

sale.cpp

/*
时间评估:良好。策略评估:T2 优先。开始:08:50 
下次提醒:09:20 
我们首先考察何种情况下,将使得是买到的原价总和最大的糖果
这个策略看起来非常对,但是哪里他可能不对??
也即为经典问题:01 背包为什么不能按照性价比贪心?
答:因为可能存在空间浪费问题

---
此处省略约 40 行思路 + 题解
---

这个意义 DP 起来相当不容易。
我们考虑先做出 poly,首先我们统计第一种·首先枚举用了为 1 的
前几个。此时知道需要用为 2 的前几个。
!启动非常模式,放弃正解!
1-5 暴力检验。
m=2(7-9,14-15) 第一种,
第一个是 1,枚举第二个 1 
*/

SC-0055

关注luogu 1039274

tree.cpp

/*
饿啊,这一次的noip之旅就要结束了咋搞啊哥
败在不会数学题了。
数学真难受啊啊啊啊
关注luogu 1039274 谢谢喵 
*/

SC-0058

ZIGAO 老师好!

tree.cpp

#ifndef ZIGAO
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
#endif

SC-0061

欢迎报考SS中学喵

candy.cpp

/*
147 pts 

退役了,这把炸完了,祝我好运吧

-- needna
*/ 

sale.cpp

/*
欢迎报考SS中学喵 
*/

tree.cpp

/*
开始走马灯了,挺难受的 
*/

query.cpp

/*
祝各位能继续热爱OI! 我先走一步了。 
*/ 

SC-0067

布什葛门穿越了?什么时候 NOIP 考到 1:10 了?

candy.cpp

//pass all samples at 1:10 

SC-0074

喜欢这样的 OI 吗?

tree.cpp

/*
好吧,OI 生涯也该结束了。没啥好说的,只是有点不甘心,为什么会倒在联赛???
四道题,看错三道,把 T2 看错后写了 2 个小时,死活小样例调不过。直接红温了。
省一应该是没有的,看看能不能省二吧。话说高一省一,高二省二也是没谁了。
算了算了,这辈子就这样了,一年了实力没有一点长进,倒是心态在不断退步了。
如何?喜欢这样的 OI 吗?

luogu:575275
*/

SC-0076

日本語大佬 %%%,化学大佬 %%%

/*
注意!!!
WA -汝らNOIPへ爆む0なり-
// freopen VS no-dp.cpp VS no-duoceclear VS no-longlong VS no-init

像一场梦一样

这次估分 100

就这样,去见化学老师去了,遗憾退场。
第二题死活做不出来。

去吃米线去吧,后面的文化课会好的。

*/

SC-0082

我该在哪里停留?我问我自己。

candy.cpp

/*
[省选联考2025] 追忆
题目背景
我常常追忆过去。
生命瞬间定格在脑海。我将背后的时间裁减成天上朵朵白云。
云朵之间亦有区别。积云厚重,而卷云缥缈。
......
我该在哪里停留?我问我自己。
*/

SC-0088

求翻译

tree.cpp

// Does all of this matter?
// Does this work?
// In somno OIeris contendi,
// Ad omnes meliores.

SC-0092

后会有期

query.cpp

/*
如果有谁好奇看了这份代码的话,
那么,没什么好说的

不过是一次自我毁灭罢了

以这样惨淡的方式谢幕,或许并不优美,但却最符合我

再见!
后会无期! 
*/

SC-0099

游记大蛇

tree.cpp

/*
## 看题
要结束了
### T1
应该不难来着

### T2
数数?
5e4 CCF 你要干啥

### T3
啥?

### T4
虽然感觉很神奇, 但是 NOIP 不会乱序放题吧

## T1
策略, 停滞, 解决, 心态
数据检验, 关键步记录, 理清过程
### 思路
不难发现可以拆成一种无限多个价值为 2 的物品和一种单个的价值为 1 的物品, 我们分别称为 2, 1 类物品
2 类物品显然直接贪心买最便宜的哪一个
1 类物品比较简单啊, 我们可以预处理出买多少 1 类物品的花费, 然后拼接上二类物品, 这题就做完了

## T2
策略, 停滞, 解决, 心态
数据检验, 关键步记录, 理清过程
### 思路
首先应该是要先转化成约束
考虑这个贪心在什么时候是错误的? 也许使用调整法?

管你这那的, 现在已经发现部分(存疑)情况, 相似的我们定义 1, 2 类物品为 w = 1, 2 的物品
那么贪心会错仅当买了 1 类物品 x 之后错过了一个 2 类物品 p, 只有选择一个 1 类物品 y, 但是实际上 x + y < p
我们完全可以添加一个 1 类物品 0 来把其他情况规约至当前情况

当然好像不止这一种
约束好像很难形式化表述
是不是就是你选的最后两个 1 类物品价值必须大于第一个没选的 2 类物品

## T4
策略, 停滞, 解决, 心态
数据检验, 关键步记录, 理清过程
### 思路
看下暴力

没能做到啊

*/

SC-0102

高考加油!

tree.cpp

/*
可能去不了省选了
AFO on 2025.11.29 
带着征服巨浪的勇气,悄无声息地汇入大海。
2027 高考加油! 
*/

注:以上为代码全部内容

SC-0104

打表大蛇

tree.cpp

        std::cin >> n >> m;
        if(n == 5 && m == 2){
            std::cout << "9\n13";
        }
        else if(n == 13){
            std::cout << "52\n31\n25\n50\n46";
        }
        else if(n == 40){
            std::cout << "309\n160\n137\n173\n142";
        }
        else if(n == 4000){
            std::cout << "4746\n8000\n5473\n4749\n4746";
        }
        else{
            std::cout << "95834\n79028\n97785\n60262\n87060";
        }
        return 0;

SC-0105

游记大蛇

sale.cpp

/*
noip游记
xgd 
树德高三生观光团团长,抱着随便考考的心态来的,反正高二拿过1=
高三来打的原因一个是教练想加一个保底(结果没保住),一个是能拿学校竞赛的奖学金,还是能有5000-20000. 
结果没想到第一题15min切了之后第二题4h都没写出来,T3T4题面都没看。。
但是csp看到后辈相当一部分都非常有实力,真的后生可畏啊,我这个老会长十分欣慰。
也希望后生都能圆梦1=吧 
就这样吧,我人生最后一次oi考试。
哎想想真是可惜啊。
cspj21 1= 
csps21 3=
acm-sc21 cu 
cspj22 2=
wc23 cu 
csps23 2=
noip23 2=
acm 哈尔滨23 cu 
csp24 1=
noip24 1=
acm 哈尔滨24 ag 
csp25 1=
noip 25 2= or 3=
*/

SC-0111

该选手在 sale.cpp 文末多打了一行 */

默哀……

SC-0112

It is time to say goodbye

sale.cpp

// LUOGU UID : 656427
// It is time to say goodbye

SC-0124

为什么暴力写挂!

query.cpp

为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!
为什么暴力写挂!

注:以上为代码全部内容

SC-0134

CCF,Please Give Me More Points!

query.cpp

/*
CCF,Please Give Me More Points!
QwQ
*/

SC-0143

该选手在 candy.cppquery.cppsale.cpptree.cpp 提交了相同的代码。

SC-0153

诗人啊!(物理意义)

candy.cpp

// 答案应该是最优 pair 取多次,剩下的 first 取一次。
// 问题是最优 pair 取多少次
// 预处理出 first 的前缀和,复杂度 O(n)
// 8:54 done
// 12:31 大样例强度低,没判负数,加上了
// 100 + 24 + 8 + [5, 35] AFO
// 一身素青纱,草柄当头花。牵起我下等马,绣花蹄子脏了我来擦。
// 系好铜钱挂,鞋底不沾沙。这江湖笑我傻,竟不懂我三分拙劲破天下。

SC-0156

I love CCF!pls give me more pts!

tree.cpp

int main(){
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");
    puts("I love CCF!pls give me more pts!");

/*
此处省略 4960 个
*/

    return 0;
}

SC-0167

结束吧!

query.cpp

over

注:以上为代码全部内容

SC-0171

纵有怅惘,珍忆藏心

tree.cpp

/*
I have some words to say.

I know that I'm soon to leave.

but the memory will keep in my mind.

I will remember all those wonderful moments.

with pleasure, relief. 

Although i felt sad, and maybe i'm just stupid as they thought, but i never regret, just as i've said. 

good luck to you all.

@Moeebius @tybbs @staring

*/

SC-0176

LOVE118 老师好

query.cpp

#include <bits/stdc++.h>
using namespace std;

int main()
{
    //666
    //Now is 12:53
    //I am a student at grade 10
    //I can only get 100 + 20 + 15
    //My luogu is LOVE118
    //I am crying
    //Missing my lover
    //I don't have the power
    return 0;
} 

SC-0186

对不起!

query.cpp

sorry

注:以上为代码全部内容

SC-0196

一路走好,未来可期!

query.cpp

/*
The last dance
It's time to say goodbye
4 years on OI
From 2022.1.__ to 2025.11.29
I hope that we could meet the next time at university

but ... It's too late
Tomorrow I will go back to my whk class,and enjoy a different time
*/

SC-0202

听说有个东西叫做 ull

tree.cpp

//mysterious 4 ad-hoc
//GVDL DDG

query.cpp

//how to mod 2^64?????

//你是准备吗?

注:以上均为代码全部内容

SC-0218

awa

query.cpp

awa

注:以上为代码全部内容

SC-0229

未定义标识符 x,默哀。

sale.cpp

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int N=5050;
const ll mod=998244353;
ll pew(ll a,ll b){
    if(!a) return 0;
     ll ret=1;
     while(b){
        if(b&1) ret=ret*a%mod;
        a=a*a%mod;
        b>>=1;
     }
     return ret;
}
ll ans,c[N][N],a[N];
ll jia(ll x){
    return (x>=mod)?(x-mod):x;
}
int main(){
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    for(int i=0;i<=5000;i++){
        c[i][0]=1;
        for(int j=1;j<=i;j++)
            c[i][j]=jia(c[i-1][j]+c[i-1][j-1]);
    }
    int ci,T;scanf("%d %d",&ci,&T);
    while(T--){
        int n,m;scanf("%d %d",&n,&m);
        ans=0;
        for(int i=1;i<=n;i++){
            scanf("%d",&a[i]);
        }
        if(ci==18){
            for(int i=1^(m&1);i<m;i+=2)
                ans=jia(ans+c[n][i]);
            ans=jia(pew(2,n)+mod-ans);
            printf("%lld\n",ans);
            continue;
        }
        printf("%d\n",x);
    }
}

SC-0230

friend operator <,默哀

candy.cpp

struct node{
    int a,b;
    friend operator < (const node &x,const node &y){
        return x.a<y.a;
    }
}p[N];

SC-0231

再见 OI!

query.cpp

/*
我靠mod 2^64是什么鬼
1e19 完蛋啦

遗憾了 T2没写出来
再见了 我的奥林匹克信息学竞赛。
下辈子还当OI人
我想 总是别离惯的
AFOed 2025-11-19
*/

SC-0235

query.cpp

time for AFO, good bye OI(qwq)

注:以上为代码全部内容

SC-0238

暴戾语言

query.cpp

#include<bits/stdc++.h>
using namespace std;
int main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    cout<<"fkccf";
    return 0;
}

SC-0244

有机化学大蛇

sale.cpp

/*
//freopen
1145141919810
.ans CCF

ur right, but......
up dash, through dream block with theo, left hyper, right wave dash,
grounded ultra, hold theo, throw theo to the wall, up dash, grab theo,
left jump, right jump, left jump, neutual theo stall, grab jump,
hold theo, throw theo to the dream block, leftup dash, through dream
block with theo, dream double jump, theo theo to the wall,up dash,
right dash, grab theo, through dream block with theo, dream grab,
wall bounce, stand on core block, theo neutual stall, left dash,
through dream block with theo, dream grab, left dash, dream grab,
rightup dash, dream grab, grab jump, throw theo to the dream block,
leftup dash, grab theo, through dream block with theo, dream grab,
rightup dash, dream jump, throw theo to the wall, up dash, grab theo,
through dream block with theo, throw theo on the moving block, right dash,
grab core block, core hyper, updash, through the dream block, eat flag,
left demohyper, rightup dash, grab theo, throw theo, up dash, rightup dash,
grab theo, through dream block with theo, dream grab, leftup dash,
THEO DREAM HYPER(VERY DIFFICULT ONE!!!), theo neutual stall, left dash,
up dash, through the dream block, right dash, through dream block,
rightup dash, grab theo, through dream block with theo, dream grab,
leftup dash, through dream block with theo, dream grab, up dash.
and you got the golden berry of the Solar Express.

i think i should play less celeste on the night before noip.
as a grade 12 student, i can't AC T1 after a year of WHK.

ur right, but......
the golden berry of the Finnal Farewell D-side by Monika is never
mean to be possible. the berry hanging there is just a joke. the room
called smots-8 is there, to defend every golden berry which get there.
smots-8 makes stay calm(not to laugh) a lie...(i forget least part XD)
but ninz is not a human, so she can get it.

omg, i even don't no how to get any score on T2 and T3!
i thought my oi life would end in a rediculous way.
if i don't play so many celeste and silksong, i may get more score!

ur right, but......
第一幕,苔穴,苔藓之母,骸底镇,丝之矛,钟道兽,丝之心,骸骨洞窟,
深坞,疾风步,攒钱,简单钥匙,沙噬虫道,壳木林,蛛攀术,黑寡妇,
钟心镇,织针升级,灰沼,罪途,迷雾,废鸣管风琴,幽影,十字绣,
第二幕,圣咏殿,机枢舞者,机枢核心,低语书库,特罗比奥,圣堡工厂,
飞针冲刺,圣咏音筒,管理员的旋律,建筑师的旋律,高庭,指挥家的旋律
电梯,蕾丝,摇篮圣所,崇高圣母:灵丝……你就完成了丝之歌速通钥匙线。

wc, the time goes so slow. though i have written so many things,
there's still THREE hours left! what can i do in the 3 hours???

ur right, but......
我认为美英茄子是最强OTK卡组。这个卡组包含4+4+3*6=26点跳费,足以保证能在
较短时间内达到启动所需费用。四护航队四阴云双卡梅伦的过牌也可以保证快速
过出组件,四阴云四魅力男孩双卡梅隆的回血和守护足以保持血线,双地毯式加
美研发和燃烧弹保证了中期解场能力,只需要16费就可三茄子+密歇根启动,
每多一张生产令/密歇根就多24/18点斩杀线,还有拖延战术保下限/山姆大叔提上限,
最超雄时可以双生产令三密歇根潘兴b29双核弹斩掉99血英爷,还可以防空和消防
局恶心剃头,茄子一拍就是啊啊啊啊啊啊啊 

what? there's still 2.5 hours before i could get out befind the bars?!

ur right, but...... 
我认为OI是一个很需要专注的环境,中间忘了,反正只要一个数字打错,就满盘皆输。
[拳头]一招失误,满盘皆输[拳头]
[拳头]让他们归于大地[拳头] 
[拳头]既然他们喜欢暴力,那就让他们见识真正的暴力[拳头] 
[拳头]感受,我的痛苦![拳头]
[切换形态][拳头][拳头][抱头痛哭][拳头][拳头][鲑鱼大帝][拳头][拳头][真空期]
[拳头][拳头][抱头痛哭][拳头][拳头][我需要帮助!][神秘智械暴毙声]

oh, i made a mistake. the test ends at 13:00,so there only 2 hours now.

ur right, but......
[进入关卡声]城头的烽火,总是这样熄了又燃……
博士,待会可否为我擂鼓?
[落地声]看看这眼前,风光无限,可惜做了战场。
多少迁客骚人,直到身临战场,才能写出好句子,包括我那个妹妹……也算是一种际遇
[拳头]千招百式在一息[拳头]
[拳头]形不成形,意不在意,再回去练练吧[拳头]
[拳头]你们解决问题,还是只会仰仗干戈吗[拳头]
[关卡结束音]日落飞景绣长河,天地壮我形色 
*/

tree.cpp

/*
//freopen
1145141919810
.ans CCF

somehow i ask myself: why do i love a straight man?
though my close friends are not on my xp, he is a
straight man, which is easy to mention. so why do i
still keep my fantasy to try to turn him a gay?
every night when i can't sleep well contributes to
him, his sweety [data deleted] and his [data deleted]
with me......
MaYaDaJieNi.ZunSuDiJi.XiaShuLe.

very good xianhua, love from chengdu.
what i want to say is that when oiers from other province
are looking at this xianhua in the MiHuoXingWei collection,
plz don't think that all of oiers from sc is gay.XD 

i am a really bad english user (sto).

anyone want to watch zootopia2 tonight? i am not srk, just
want to find my childhood, though i was srk then.

     _________ 
    /`````````\         O
   /           \       //
  /             \_____//
  \\           //      \
   \\         //        \
    \\       //          X
   苯宝宝酰卤为敬 

 _________          O
/`````````\        ||

/ \ || / ------S-----C2H5 \ // || \ // || \ // O

       苯宝宝乙砜

https://go.microsoft.com/fwlink/?linkid=2162539 
*/

SC-0248

如你所愿

candy.cpp

// 大樣例水完了
// 我唐完了
// 還有神秘搜狗給我切成繁體中文了
// 在這唐題上卡了 2.5h
// 我這輩子有了
// 希望能在退役前最後一場比賽進迷惑行為大賞
// 作為我學過 OI 的證據
// 進了給我發洛谷私信:@Eous

SC-0259

如你所愿

tree.cpp

//T3 tree
//Luogu: WOLFSTAR(1044658)
//来てくれてありがとう!
//用搜狗输入法的符号功能打日语能上迷惑行为大赏吗

SC-0267

AKoni

candy.cpp

struct Akano{
    unsigned long long x;
}Akoni[200005];

SC-0274

退役又如何?唯以情永存

query.cpp

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>

int main() {
    freopen("query.in", "r", stdin);
    freopen("query.out", "w", stdout);
  std::cout << "我不管了,这次打的跟个啥一样,平常模拟赛都不是这样的,damn\n";
  std::cout << "不管这次退不退役,我都要表白\n";
  std::cout << "I LOVE HWY\n";
    fclose(stdin);
    fclose(stdout);
    return 0;
}

SC-0302

zhz_cptbtptp 老师好

tree.cpp

//dying QAQ
//wo xiang shang mi huo xing wei da shang
//luogu: zhz_cptbtptp

SC-0303

刘书羽老师好

tree.cpp

#include<bits/stdc++.h>
#define int long long
using namespace std;
int n,m,ans;
struct node{
    int x,y;
}a[100005];
bool cmp(node a,node b) {return a.x+a.y<b.x+b.y;}
bool cmq(node a,node b)
{if(a.x==b.x) return a.y<b.y;else return a.x<b.x;}
signed main()
{
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout); 
    while(1) cout<<"刘书羽";
    return 0;
}

SC-0305

114514

query.cpp

#include<bits/stdc++.h>
#define endl '\n'
#define ri register int
#define int long long
#define ls(x) x<<1
#define rs(x) x<<1|1
#define MAXN 9.2e12
#define inf 2114514
#define mf 5011
#define sf 1011
#define MOD 114514
#define mod(x) (x+MOD)%MOD
using namespace std;
signed main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    return 0;
}

SC-0308

再见 oier

tree.cpp

#include<iostream>
using namespace std;
const int N=1010;
int a[N],sum[N];
int main(){
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
    //再见了 所有的oier
    //最后一次写 return 0
    return 0;
}

SC-0315

RP++

query.cpp

#include<bits/stdc++.h>
using namespace std;
int main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    cout<<"2025 NOIP RP++";
    fclose(stdin);
    fclose(stdout);
    return 0;
}

SC-0319

不打分号,但也没什么好默哀的

tree.cpp

#include<bits/stdc++.h>
using namespace std;
int t
int main(){
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
    int t;
    cin>>t;
    while(t--){
        cout<<5;
    }
    return 0;
}

SC-0322

该选手在 query.cpp 中写了 706 行代码却没能通过编译,默哀

query.cpp

代码

SC-0332

语法大蛇

sale.cpp

#include<bits/stdc++.h>
using namespace std;
int a[100005],w[100005],xjb[100005];
int main()
{
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    int c,t;
    cin>>c>>t;
    while(t--)
    {
        n,m;
        cin>>n>>m;
        for(int i=1;i<=n;i++)
        {
            cin>>a[i];
        }
    }
    cout<<n;
    return 0;
}

SC-0334

进食厚仁

该选手在提交的 3 个文件的开头都有如下代码

/*
freopen开了吗
long long开了吗
数组够了吗
特判了吗
暴力打满了吗
心态稳定
*/

SC-0339

wyx1222 老师好

该选手在提交的 2 个文件的结尾都有如下代码

//wyx1222

SC-0346

可以吗总司令?

candy.cpp

/*
你知道洛谷的奇葩代码大赏吗(为什么不可以给奇葩代码投票来排名?我想要当榜一(noip不可能当榜一,那奇葩代码总可以吧))
也许你以前不知道但你现在一定知道了(废话,不然别人在哪里看到这篇代码(ccf会检查代码吗?))
如果有人找到了这篇游记,请在洛谷上转发给我(Kele2009)谢谢
我是fvv,我是fvv,我是fvv

游记:
8:30:今年T1看起来很简单就是个贪心(也许吧)
9:34:woc我是fvv,我感觉这像是dp(我不到啊),为什么我没有在考前复习dp(qaq)(提交T1暴力 exc:10pts)
9:37:我爱你ccf
9:38:今年会有总司令吗
9:50:qaqT2怎么写,不管了,先给T4写个总司令
10:05:我想玩OI教练模拟器([退队倾向]qaq 什么,你还不知道在哪里玩:seve42.github.io/OItrainer(应该是吧))
10: 18: 不管了,开始暴力T2
10:56:我想玩三角洲qaq
11:24:c我感觉T2写不出来了,我现在的版本太扯了,还是重新写一遍吧qaq
12:23:woc我还在写T2,我写了3个小时T2 qaq

我是fvv 我是fvv 我是fvv
我感觉我进noip就是来写这个的。。。
反正是竞赛第一年,当旅游的吧。。。

初赛全选cd,卡分进复赛。
复赛全暴力,神人进noip。
noip解题难,得oi一场空。
三年oi竞赛,算法仅暴力。
大脑全空空,下辈子不来。
若是左右看,禁赛又三年。
*/

query.cpp

#include<bits/stdc++.h>
#define mian main
#define ccf int
#define int ccf
//uwewqueqwhejasdhqwejhjygyhgjygyhjhgyujh jhbyfuhijopk[o0-908uiop[poihujknm;poik;'poil;pkoinkkpoihklkopihnklmoihujknl;o';p[k;'[poi[09iojklm;okijlnbhvgfdesrt5y6u]']
//芒(记不到歌词 qaq):我试着把孤独藏进耳机,用琴键代替,写不下的真实姓名终于,天总会晴我爱下雨像得了怪病,怎么还不清醒~
//我可以在这里@Mhxma @Octoday @zengyirui(怎么会有人实名上网(是这名字吗))吗(洛谷id)
using namespace std;
const int N = (5 * 1e5) + 5;
int a[N];
int mian() {
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
//  freopen("query.in","r",stdin);
//  freopen("query.out","w",stdout);
//  ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf ccf
    int n, q;
    cin >> n;
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }
    cin >> q;
    for (int i = 1; i <= q; i++) {
        cout << 0 << endl;
    }
    return 0;
}
/*
可以吗总司令
*/

SC-0355

没写完代码,默哀

query.cpp

#include<bits/stdc++.h>
using namespace std;
const long long int N=1e5+10,inf=1e9+10;
int n,a[N],q;
struct tree{
    int l,r,w;
}t[N<<2];
void BuilD(int p,int l,int r){
    if(l==r){
        tree[p].l=l;
        tree[p].r=r;
        tree[p].w=a[l];
    }
    int ls=p*2,rs=p*2+1;
    tree[p].l=l;
    tree[p].r=r;
    mid=(l+r)/2;
    BuilD(ls,l,mid);
    BuilD(rs,mid+1,r);
    tree[p].w=tree[ls].w+tree[rs].w;
}
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&a[i]);
    }

    for(int i=1,L,R;i<=q;i++){

    }
}

SC-0356

清风拂面,夏日已至

// 冷静、停滞、思考、转化、放下、自信、部分分
// 亲爱的绫华和奈绪祝我好运
// luogu 关注 xAlec 谢谢喵 
// 为你写下无人铭记的音乐。————《遥远小镇的我》
// AFO.

/*
我的破木箱 装满枯萎的花
放不下 光与染 和新鲜的愿望
如果能飞翔 去高高的地方
撒一张 梦的网
收集爱的回响
你也在听吗 落单的孩子啊
别害怕别害怕 黑夜不会太长
悬崖上的花 让我为你摘下 
数一瓣 落一瓣 就少一朵忧伤
泥草和沙砾没有嘴巴 一定不会说谎话
他们提醒我有道光 落在我的前方
是你吗 在回家的路上 洒满月光点亮花蕊
是你吧 弹奏古老和弦 赶走梦魇 伴我入睡
是你吗 把头顶的雨水编织成蓝色的屋檐
约好啦 等我们都长大 再次遇见 要比现在更美

一千个噩梦 换一千个小偷
够不够 够不够 偷走你的难过
遇见那一刻 就倒置了沙漏
不必说 要铭刻 天长还是地久
都说长大后会忘记童话 清醒后会忘记梦
可尤其是下过雨的午后 会想和你重逢
是你吗 在回家的路上 洒满月光点亮花蕊
是你吧 弹奏古老和弦 赶走梦魇 伴我入睡
是你吗 把头顶的雨水编织成蓝色的屋檐
约好啦 等我们都长大 再次遇见 追寻梦的蔓延
谁越过一片花海 
谁切切朝我走过来
谁依然记得我 未完成的心愿
是你吗 头戴着花环 衔着最纯净的枝丫
是你吧 撕下一缕霓裳 借我照亮 盒中之花
是你吗 在某一天默默消失在春天的遥望
可我呀 记得你的所有 我不会忘 我不会忘
*/

SC-0370

c

tree.cpp

c

注:以上为代码全部内容

SC-0378

以爱为名,山海皆可平

该选手在提交的 4 个文件的结尾都有如下代码

//Itha I love you

SC-0389

打表大蛇

sale.cpp

#include<bits/stdc++.h>
using namespace std;
int c,t,n,m,a[5001],p=998244353,w[5001],k[5001];
int ksm(int di,int zhi){
    int sum=1,d=di;
    while(zhi){
        if(zhi&1) sum=sum*d%p;
        d=d*d%p;
        zhi/=2;
    }
    return sum;
}
char x;
string s[12],chk,ans[12];
int main(){
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    cin>>c;
    s[1]="132135";
    s[2]="100055483903342335678433241951671241951671251607302";
    s[3]="500107306886133334397332688109862990638533888827022";
    s[4]="110300235718087722401392357096413222867843635304750";
    s[5]="110300212839346536588622927541871197680100892791301";
    s[6]="110300588228047905398380188236613443398365186303266";
    s[7]="130100023384251422307045423427384262138748152237538";
    s[8]="130100019983571357442035725284389786573095533928532";
    s[9]="130100013166659738977337237377036916317197599855686";
    s[10]="130100032130112168920169791823610887322463234630985";
    s[11]="208500064532699950103357157783616359962302737183166";
    int cnt=-1;
    if(c==0){
        while(cin>>x){
            cnt++;
            if(cnt<=50) chk+=x;
        }
        int num=0;
        for(int i=1;i<=11;i++){
            if(chk==s[i]){
                num=i;break;
            }
        }
        ans[11]="115549589 520520742 742858351 545393728 904973068 325098201 784575910 503748598 933428501 801834881 65980983 762104293 449198261 594334263 620901884 591542251 824911214 764826997 953165911 690385885 65524705 65980983 690478811 716240707 957078785 455998497 657209320 366110417 752342893 960177953 586584684 617828808 167246355 65980935 65320777 65980984 870128817 772366281 234680027 304316292 233868423 90508546 10380760 495723397 172365793 282660972 675016123 328091091 917552557 948203926 569780978 453054896 139156847 534592463 802018590 543472175 65980984 887310522 687933233 50999691 540756915 455587728 516149057 737619669 152432971 51801552 975388452 726398152 686806618 674029467 44503482 531644072 560663184 588532781 521661292 867794250 665909702 969464208 51784295 519605090 65980984 837732626 618274034 64023057 587512748 972716534 790162273 743322693 167708630 541300130 610554976 472982952 285324404 178717957 139207039 65979002 965689843 559480308 686219459 435308358 564049117 60683757 268884974 911143116 471418232 233774134 818099771 103955602 204953594 65980936 571717196 378828108 396628858 178986694 567716461 541708621 129466745 763858011 987323572 65980984 215185019 873280641 803933616 77323967 411676771 563869575 925546252 95029217 821431665 848056762 791911316 65980984 438547061 832240060 991881419 964225045 419463562 359676911 240335589 677508532 331676098 824863031 929807427 118327561 626191785 111034943 763456290 4608993 65980984 947996579 713868252 40765098 324750921 154997478 765138372 273106038 410366618 346178322 596806089 706462792 887027627 560913789 99072704 570376320 432140978 571055345 661459584 418883432 178734378 397420063 60680590 584421541 675419945 942398549 976418858 44875379 680288722 616883670 806283011 551528676 480539349 65767979 982762894 464150567 760852785 480057781 884631760 795276365 284962384 487450642 785304300 165833084 65767979 905137598 420176761 64251338 915063176 732115657 444150134 873612669 12119756 579860956 486727064 865815949 251627367 726901081 163389928 669387350";
        ans[10]="597571305 150919880 416781409 256583890 153156249 50137569 133059224 968820081 969283960 692893253 643716773 144547991 104917243 712604532 199377892 484117804 759128467 528212978 386899531 493707670 869128850 302836322 779289405 234232456 444077569 380130090 789819775 443723257 505821586 380219893 135333384 880405026 788287356 444085337 944372917 444595123 790509221 729612913 777212930 101113623 483822779 874475705 453186555 670133938 909217030 317574393 441266454 558281402 353271782 434592547 726491840 944411417 444595123 560647286 429254189 508252543 97794529 125273373 857139725 795179860 702595033 364717158 972498363 759096139 971615289 905098246 386543852 308420653 489915793 477839956 195403085 882661760 192200549 61731185 882553677 521814499 416018271 444595122 444595121 925239609 459194232 784817897 503836971 761182241 410008483 672230954 155827785 201503487 233360748 444590503 699297525 928310264 14116101 289988311 274953378 327384873 162154947 16543570 583903321 156233194 956169339 366632383 444585947 306678610 904624332 443723292 873470874 222377308 959732086 373224876 192101595 474872063 135993232 951154586 257584634 742587388 45302771 618856540 446160318 613171419 907995660 444011596 250469300 498322838 517733471 240860766 370914097 376886022 205170249 745361165";
        ans[9]="517874080 208037550 365399010 558591536 490694788 444594381 385650525 443935001 128293504 443927203 706274064 331556298 167031264 82926085 444594343 83892474 376823215 780486108 514343801 724430269 128294314 440731248 712713088 326393943 729236558 76606890 444594344 444594344 53030150 789775060 444585206 151844811 428110992 514343806 636693924 331576647 444502959 444001677 425283656 803693664 738425993 363759922 728068526 562816154 348007528 532908130 910732089 938793585 444595084 992602793 444594344 282632983 873488392 962360375 444594344 874862892 444595084 459104301 363759921 444511425 963240244 128293488 760732122 331638907 128293488 249270433 803633095 444594380 743203465 739274363 728437335 728879176 596285996 425283656 688034956 490184196 737933446 444595084 83892019 681152813 349874544 88170012 31921349 916956584 444594344 706940893 130558679 9376276 470996921 732128619 688034956 444585907 690165591 936610944 444595123 584804065 623679156 743286330 428111027 444585907 428110992 444585907 89640059 385670973 444585207 856923607 16760093 425283657 680550880 745578336 432461504 249263918 21596516 730763590 834776518 441174320 729238551 363759931 690630694 444585207 905491307 460578745 745578370 873488360 459105116 636218553 363759927 440664585 837690225 39492157";
        ans[8]="23226277 23226276 23226277 23226277 23226277 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595122 444595122 444595123 444595122 444595123 444595123 444595123 444595122 444595122 444595123 444595122 444595123 444595123 444595123 444595122 444595122 444595122 444595123 444595122 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595123 444595122 444595122 444595123 444595123 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595122 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595122 444595122 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595123 444595122 444595122 444595123 444595122 444595123";
        ans[7]="54292701 910808587 993243060 450888409 838643026 360577888 310377131 637397860 420314023 171965294 528481273 444593833 443543363 438104882 272087973 989854636 125826984 838859683 293297067 441271203 444070810 91224983 443732364 443530152 905444251 174783407 25164709 872397614 369097133 376896425 443644306 217840554 437589938 432995247 440327089 142605239 310360863 939522918 436020095 888662948 432802475 276822683 209648295 469760944 369096876 308039597 443375114 989854642 763353753 159382442 141556393 356506284 369097640 437680355 396999593 141818799 108985250 212728753 437250868 192920487 410188711 763362233 166853551 148896603 838851515 977271702 392952735 142605233 425442179 444591292 327146410 562033569 444595098 22526883 905951154 41939891 140508055 100662052 293075837 360182320 492829604 830208859 427292187 444446143 444592203 292550571 444070760 268172193 301464498 872414168 443021723 142605155 8387419 72809395 837811113 377485163 292543407 176122267 428932015 444373923 324926245 33553327 363854768 629111749 443339815 905968557 442464593 293337988 29359024 431315859 438369147 167771075 434101162 310369202 838859575 431225779 176028329 428855595 276296475 443546276 176159619 427121075 246414203 603978677 136313763 159345525 444332974 905951659 591395763 434087821";
        ans[6]="146507431 459482097 570966915 993792389 447878036 672297276 628752328 228718535 367073143 519005515 533747 1045064 1048439 844947 1014901 970305 1030183 987707 633416 1048576 699817 1048576 940130 715731 543274 972745 727707 1015240 642444 926968 598675 696369 1014044 924977 1048576 533514 1047760 1033688 1025828 923951 988343 1044645 672382 1048575 1029875 758481 1048576 1047604 1048575 986589 969330 1005652 880400 1048421 1044392 988076 747282 788526 571372 702585 1045511 1047570 823099 1037504 967497 1009628 1048558 559483 698120 975457 1043677 909008 739911 585068 616860 1038782 925480 579026 866066 555284 1048576 934395 1047605 595780 541856 1048576 1047554 607012 1021087 855103 916870 548056 785869 599921 639193 1015348 664291 1047570 565551 885292 920866 662748 1048576 1048576 987859 815800 845634 532672 811951 814737";
        ans[5]="259877640 114253751 99716990 451192455 526725955 515395908 85743674 336090775 955580584 257188390 1048576 639038 529941 543867 786502 545497 696005 530115 1031923 1048556 954413 878848 1047419 976017 786487 878844 526893 570509 618617 1031920 917397 581577 844947 878845 1047419 1048576 618616 526892 1035109 526600 1048387 844492 639116 1044373 1048387 786497 917397 543818 694144 529990 552924 639038 528470 786494 1047419 844492 917397 981645 1048557 526548 694163 917397 531978 532433 786502 1048403 526929 1031920 1043545 557940 606499 526893 1047419 1047570 1044373 606487 604354 975457 1044374 541329 526943 529934 699021 1044373 658486 543818 541413 658486 1048403 529271 878845 529946 618631 535370 1014164 1047434 1047420 1031921 1048557 1048403 639039 1032608 618617 1048387 1048557 1048557 1014045 954413 532340 581454";
        ans[4]="688111880 720729896 929851984 113848015 714101250 693105567 226790627 278418479 271118713 558251421 1047422 1048531 1048544 1048494 1036798 1048264 1048472 1045246 1032190 1032189 1048524 1048312 1040314 1047484 1048516 1048523 1048297 1047549 1048552 1048175 1039356 1048490 1046782 983038 1048530 1047673 1042358 1031164 1031424 1048576 1048545 1047164 1047550 1046524 1048532 1032182 1040318 1046520 1028092 1045376 1032190 1047816 1047608 1048572 1023992 1046656 1015807 1046958 1047863 1048176 1048423 999420 1048150 1043962 1043422 966656 1048243 1039736 1040253 1048554 1023998 1032190 1048529 1046460 1048443 1044474 1036288 1047412 999423 1013758 1032192 1041408 1048573 1048544 1044444 1040352 1047542 1048569 1048494 1048316 1048573 1039341 1046880 1032186 1048282 1048558 974848 1048537 1015551 1030140 1048479 1047864 1047807 999420 1048430 983039 1047754 1048568 1048291 1048420";
        ans[3]="586 963 585 959 989 1024 1015 994 609 831 823 776 994 622 1022 706 1024 1024 872 1024 1024 651 985 960 728 841 1024 874 919 697 926 986 740 801 599 909 816 717 1024 811 876 850 1008 601 1024 1015 690 874 1015 1024 636 1024 723 747 1024 1024 672 1023 986 602 585 776 1024 855 734 919 1023 1024 790 946 923 986 953 604 923 578 1024 816 1023 704 1024 1024 1015 1012 598 872 831 1024 988 734 1023 1024 1023 592 672 612 923 831 655 1024 1024 1024 923 1015 970 664 1024 992 917 1024 1015 1024 1024 980 1024 1024 655 909 1024 825 688 990 1016 1023 966 794 1023 1022 850 579 633 1016 579 1014 601 1024 780 1023 663 1024 1023 964 865 936 899 734 1012 975 711 1024 938 653 601 1011 1024 1010 959 562 655 987 725 1016 986 1016 975 797 625 683 664 710 848 1011 923 644 996 993 1015 764 943 688 547 709 901 818 1024 655 1024 1016 567 763 901 1023 1024 964 838 576 924 1011 1024 1024 917 633 1019 1023 557 930 1024 1024 715 851 1015 709 932 960 923 932 857 832 677 965 832 1008 992 1024 719 827 1023 732 1015 781 1024 956 946 891 1024 1024 888 779 1024 1024 584 655 1024 1024 1014 908 815 702 857 908 1023 949 653 921 955 1014 651 986 932 792 740 1024 715 653 1023 1024 1023 636 853 923 996 1024 1024 775 1017 924 662 592 1024 1022 1024 995 936 649 648 1011 901 831 994 902 923 713 599 1024 673 952 699 709 1024 743 720 1024 831 923 778 1024 622 1014 831 1015 1024 1024 1024 979 777 659 1016 586 775 1014 1023 863 1016 584 810 953 569 952 987 1024 902 1010 923 1024 1024 615 615 773 714 918 994 868 988 719 714 777 543 575 1023 987 986 960 1006 1024 1024 992 1015 930 1023 1015 894 711 721 1018 923 876 986 959 1015 1005 790 912 730 820 663 691 959 1024 871 1015 1023 1024 615 1023 575 964 831 899 1024 734 629 1012 832 718 852 964 1024 964 1024 1017 986 900 706 743 576 1016 762 1024 1024 986 1015 986 957 1008 616 987 831 781 606 1016 1024 961 601 1024 777 1024 899 567 698 953 950 1024 1024 902 578 617 1011 1024 754 635 865 1023 1024 1024 923 1015 655 1024 1015 986 979 1024 571 777 990 1024 1024 1024 902 1016 661 575 639 1023 794 582 1024 763 994 776 1024 556 1015 831 653 715 1024 1024 594 995 734 655 1024 636 595 777 566 676 933 627 979 762 995 632 1011 952 957 986 951 734";
        ans[2]="23 32 30 23 30 28 32 32 31 31 24 27 32 27 32 31 31 25 22 22 23 27 31 28 32 32 25 32 31 32 32 31 32 31 32 32 32 28 31 29 28 31 22 29 23 27 28 31 31 32 29 32 32 24 32 29 27 26 26 25 31 32 32 26 32 28 27 23 21 24 31 28 22 32 32 32 31 31 24 32 25 32 32 26 32 32 32 28 23 32 29 27 25 21 30 32 32 28 22 29 32 25 28 22 32 32 32 31 27 32 26 22 22 24 32 24 29 32 32 32 28 23 32 32 24 31 28 23 31 29 24 24 32 31 30 32 32 32 31 28 27 29 29 29 25 28 24 29 23 32 28 28 32 32 32 25 27 22 31 24 27 26 32 32 32 29 31 24 27 32 32 29 28 32 32 32 29 23 26 24 31 30 32 29 23 24 25 28 32 31 31 30 32 27 28 31 32 28 22 26 28 32 28 32 31 32 32 31 27 24 27 28 27 32 24 32 32 32 29 30 32 28 32 29 30 32 32 30 32 32 28 25 28 28 31 31 22 32 32 32 32 32 32 27 25 27 31 24 31 30 32 32 32 29 28 31 28 32 25 30 26 24 31 28 30 31 27 32 23 31 28 32 23 32 32 31 31 29 29 22 25 28 32 32 32 25 32 32 27 32 29 28 31 32 27 31 27 26 32 24 31 31 32 29 26 23 32 32 25 32 32 32 27 27 31 32 32 27 32 22 22 32 32 25 28 29 30 31 32 31 24 25 22 31 32 30 25 32 32 27 28 32 28 31 29 32 32 32 31 21 29 21 30 23 28 28 24 31 26 32 28 32 24 25 31 32 31 31 29 32 22 32 25 29 31 32 31 32 24 30 23 28 28 32 32 28 32 31 32 27 32 22 23 23 32 29 31 25 29 23 32 32 32 32 24 29 32 32 24 32 28 32 32 30 24 28 32 27 32 32 32 27 29 32 24 31 32 31 32 32 32 31 32 29 27 31 29 25 32 32 32 32 32 31 30 32 28 32 28 24 32 32 32 31 32 30 28 32 32 31 24 26 29 32 31 32 32 32 32 22 31 24 27 32 24 24 32 29 32 28 32 29 32 30 32 25 31 32 30 32 28 28 32 27 30 31 32 29 27 26 29 31 32 31 32 32 24 28 27 30 28 31 32 32 28 32 29 28 28 32 32 25 28 29 32 31 30 25 31 32 24 32 32 32 32 27 32 25 24 32 24 24 28 32 32 32 29 28 26 28 32 31 25 32 32 28 24 32 29 31 24 32 30 32 32 24 32 22 32 32 32 29 28 28 23 32 26 28 21 32 32 32 22 28 31 28 31 31 31 27 32 25 25 28 32 32 32 28 32 32 29 23 28 32 31 32 32 23 32 28 23 32 28 32 32 28 32 25 25 28 31 32 32 32 30 28 23 32 32 32 25 31 32 32 30 24 28 32 28 27 25 32 31 32 32 28 28 32 32 23 31 31 22 32 27 23 28 28 28 32 32 31 31 32 29 24 32 29 32 31 24 29 27 24 32 24 32 32 23 31 23 31 23 27 23 32 32 25 28 32 32 31 32 25 32 32 28 32 32 31 23 32 29 31 27 31 31 27 27 29 28 32 28 32 27 32 27 31 30 29 26 30 32 31 29 28 32 26 30 29 32 32 31 31 32 32 26 32 23 32 32 32 28 24 32 31 28 32 26 30 31 27 32 28 32 32 24 32 32 28 29 32 31 31 28 32 32 28 22 29 29 25 31 25 32 29 32 25 22 31 32 32 29 32 27 24 24 32 31 24 32 25 26 32 25 29 28 21 32 28 32 32 32 32 32 32 28 26 24 31 27 32 25 23 32 32 29 24 32 29 24 23 32 32 32 30 32 32 30 32 29 28 32 24 22 32 26 24 28 24 30 28 32 31 29 31 32 24 29 29 31 32 31 30 31 29 32 29 32 27 32 28 26 32 28 21 26 30 32 32 32 30 28 32 24 31 32 24 32 23 31 24 29 32 28 32 27 28 31 23 28 28 28 32 28 32 30 23 30 27 22 26 32 32 30 28 32 22 30 31 28 32 32 28 32 30 21 24 31 32 32 23 29 32 26 32 32 22 32 27 32 32 32 28 27 25 32 31 25 32 32 32 32 31 23 28 24 32 32 24 28 30 32 32 32 32 29 32 32 24 26 31 32 32 25 27 28 31 31 32 29 26 31 32 32 32 31 31 26 29 30 29 29 32 26 26 26 32 32 32 32 30 32 32 23 32 31 31 28 28";
        if(num==1) cout<<"6";
        else{
            for(int i=0;i<ans[num].size();i++){
                if(ans[num][i]!=' ') cout<<ans[num][i];
                else cout<<"\n";
            }
        }
    }else{
        cin>>t;
        while(t--){
            cin>>n>>m;
            for(int i=1;i<=n;i++) cin>>a[i];
            cout<<ksm(2,n)%p;
        }
    }

    fclose(stdin);
    fclose(stdout);
    return 0;
}

SC-0390

心向山海,未来可期

query.cpp

#include <iostream>
using namespace std;
const int MAXN = 50010;
const int MAXQ = 1034;
struct Ques{
    int l, r;
}q[MAXQ];
int n, a[MAXN];
int main() {
    freopen("query.in", "r", stdin);
    freopen("query.out", "w", stdout);
    cin >> n;
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }
    int Q;
    cin >> Q;
    for (int i = 1; i <= n; i++) {
        cin >> q[i].l >> q[i].r;
    }
    cout << " 18446744073709551603\n8\n4\n";
    //this is my first time to join NOIP. althongh i cant manage to accomplish these difficult problems this time, i will make it next year.
    //LISTEN, I WILL MAKE IT NEXT YEAR!
    //LOVE YOU, NOIP.
}

SC-0406

Hello world!

query.cpp

#include<bits/stdc++.h>
using namespace std;

int main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    cout<<"Hello world!";
    return 0;
}

注:该选手的 sale.cpp tree.cpp 也是输出 Hello world!

SC-0417

Hello world! +1

tree.cpp

#include <iostream>
#include <cstdio>
int main() {
    std::freopen("tree.in", "r", stdin);
    std::freopen("tree.out", "w", stdout);

    std::cout << "Hello, World!" << '\n';

    std::fclose(stdin);
    std::fclose(stdout);
    return 0;
}

SC-0430

小作文大蛇

candy.cpp

/*
省流:AFO了

正文:
a?
正解到现在都是TODO,我严重怀疑可以搜索但是我搜不出来
遂放弃
本题目耗时38min拿了15pts
好赚

有人做SC的代码审查吗?请送我上电视谢谢
我服了T4蒙不出来,送给你们做定向爆破好了。
康老师在吗? 这周末化学作业是什么? 练透32还是33你也没说啊?

资源和空间总是有限的,当种群数量增加时,种内竞争就会加剧
种内竞争加剧导致出生率降低,死亡率升高
当出生率==死亡率时,种群密度会维持在一定范围内并保持稳定和
可见,种内竞争会对种群密度进行调控
————欸我默写错了没,我记得好像是这样的

草为什么编辑器里面不能打上下标

谁把我Insert扣了?
问题是Insert被扣了我是怎么按到的??
vocal我说为什么写着写着之前写的代码没了

都AFO了是不是该感谢一下(⊙o⊙)?
嗯...
排名不分先后
感谢父母感谢老师感谢同学(部分)
感谢CDEZ感谢CDQZ感谢WWSS感谢SDGH感谢SDNX
感谢电子科技大学感谢四川大学感谢教...算了这个不感谢
感谢kkksc03(高仿)感谢undefined及Hydro管理、开发团队
————拜谢大手子.gif
感谢1molCuSO_4感谢Federico2903及Luogu-Saver管理、开发团队
感谢Microsoft(尤其感谢微软大战代码)感谢Apple感谢Linux(尤其感谢Ubuntu因为比其他发行版好用多了,点名批评C*** OS)
感谢GitHub感谢WhatsAPP感谢Ins感谢X极其不感谢Telegram因为+86注册要收我钱一怒之下买了个+1的电话号码
感谢阿里云不感谢腾讯云因为我没满18岁
感谢Luogu感谢Hydro感谢LOJ感谢UOJ感谢DarkBZOJ
感谢ATCoder感谢LeetCode感谢牛客感谢AcWing感谢CodeForce感谢UVa感谢梦熊
感谢Qwen 3/2.5感谢Kimi 2/1.5/OK Computer感谢ChatGPT 4o感谢Copilot感谢Gemini 3不感谢DeepSeek因为喜欢学术造假嘴还死犟我真服了

T2见
*/

sale.cpp

/*
你好
我回来了
这下真的完蛋了

我的评价是:误闯天家
不是西西弗你给我一个85分的放进来干啥
四川没人了吗(草四川好像真的没人了,听说这次0分都进了)
求善待,现在还有半个小时结束
我写点啥。。。游记不会写。。。
嗯。。。

动物激素的特点:
1.微量、高效
2.通过体液运输
3.作用于靶细胞/器官
4.与受体结合后立即失活

头抬起来
你表情别太奇怪
无大碍
没伤到脑袋
如果下手太重simimase
习武十载
没下山没谈恋爱
吃光后院七八亩菜
练得这身莫以貌取人哉(草我好像背错了)
暮色压台
擂鼓未衰
下一个谁还要来
速来领败
别耽误我热蒸屉揭盖
一身素青纱草柄当头花
牵起我下等马
绣花蹄子脏了我来擦
————《下等马》
这首歌是双原唱吧,是洛天依和CiliChill的(七里桥我打错没)
哦对《我的悲伤是水做的》也是她俩的

七里桥还有一首和三Z-STUDIO合作的《pinKING》(妮可的PV还是啥我忘了)也挺好听
不枉我听了这么几年七里桥

啊啊啊啊啊啊洛天依我爱你

欸你们听过《张士超你昨天晚上到底把我家钥匙放在哪里了?》没
名字应该没写错
我唱一下

昨天晚上
我走在回家路上
突然想起
我没带钥匙
我打给你(叮铃叮铃)
二十六个电话(叮铃叮铃)
你没有接
你没有接!(没有接)
你回话了(喂,干啥)
叫我等等(这会儿在忙)
你办完事(真不行)
就回家~
可是张士超
你这个浑【数据删除】
你带着姑娘去了闵行
你到底把我家钥匙放在哪里了
你到底把我家钥匙放在哪里了
你!到!底!把!我!家!钥!匙!放!在!哪!里!了!
【神乎其神的间奏】
地毯找了
花园也找了
就连门口大爷
我也都问过了
你就是忘了
你就是忘了
我们家在五角场
华师大的姑娘真的那么可爱吗
华师大的姑娘真的那么可爱吗
华!师!大!的!姑!娘!真!的!那!么!可!爱!吗!

呃呃呃这首歌好像是上海彩虹室内合唱团指挥写的,也是他们唱的
据说是因为之前他和张士超合租过,然后有一天没带钥匙就发生了这个事
一直耿耿于怀
然后后面到彩虹室内合唱团之后就把这件事写出来了
后续可以听听张士超的《关于那26个电话》(这玩意真的有后续我靠)
当然上海彩虹室内合唱团是一个非常优秀的合唱团,张士超也是很优秀的作曲、指挥,其他的曲子都能去听听

啊啊啊啊还有10分钟才能启动绝区零啊啊啊啊
计划有变我要抽般岳!(我是抖M吗要去抽这个手法那么复杂的角色)
实在不行就当给叶瞬光垫池子了(苦笑)

打个广告:
2026年冬日绘板将由洛谷保存站承办!2025/11/29 18:00:00开始测试!
我不是保存站的,我只是打个广告。
再见ヾ( ̄▽ ̄)Bye~Bye~
*/

tree.cpp

//请给我一点分数!!!!!!!!

query.cpp

//404 Notfound

注:以上为代码全部内容

SC-0438

论数字中逗号的作用

sale.cpp

const int MOD=998,244,353;

SC-0441

分讨大蛇

sale.cpp

648 行代码

SC-0454

祝福

sale.cpp

#include<bits/stdc++.h>
#define int long long
using namespace std;
signed main(){
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    cout<<6;
    return 0;
}
//CSP-S 2026 1= 
//NOIP 2026 1= 

SC-0461

又一个不去逗号的

sale.cpp

#include<bits/stdc++.h>
using namespace std;
int c,t,temp;
int m,n;
int a[5005];
int main()
{
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    scanf("%d%d",&c,&t);
    for (int i=1;i<=t;i++)
    {
        scanf("%d%d",&n,&m);
        for (int j=1;j<=n;j++)
        {
            scanf("%d",&a[j]);
        }
            printf("%d",(2*n)%998,244,353);
    }
    return 0;
}

SC-0462

话说 T1 真的是 DP 吗?

query.cpp

/*我感觉要被打,第一题的状态转移方程出不来...
12月1、2、3号月考,QAQ,SDXJ我爱死你了
算了我放弃了,已经看开了,下一步就是怎么让指导老师看开
生物学,我爱你
还有40分钟,第一题还是没出来,放弃了

#include<bits/stdc++.h>
using namespace std;
long long m,n,x[100005],y[100005],dp[100005],sum;
bool k[100005];
int main()
{
    freopen("candy5.in","r",stdin);
    freopen("candy.out","w",stdout);
    cin>>n>>m;
    for(int i=1;i<=n;i++)
    {
        cin>>x[i]>>y[i];
    }
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            if(k[j]==0)
            {
                if(dp[i-1]<dp[i-1]+x[j]&&dp[i-1]+x[j]<=m)
                {
                    k[j]=1;
                    sum++;
                    dp[i]=dp[i-1]+x[j];
                }
                else
                {
                    dp[i]=dp[i-1];
                }
            }
            else
            {
                if(dp[i-1]<dp[i-1]+y[j]&&dp[i-1]+y[j]<=m)
                {
                    k[j]=0;
                    sum++;
                    dp[i]=dp[i-1]+y[j];
                }
                else
                {
                    dp[i]=dp[i-1];
                }
            }
        }
    }
    cout<<sum;
    return 0;
}
//dp 学成啥了... 

...算了第一次,就当积攒经验了
不过考上高中之后感觉好忙,不是说高一很简单吗
想变成毛茸茸QAQ

*/

tree.cpp

/*
突然发现我自己也有文字失语症了,
只能说我们这代是互联网快速发展的一代,
带来了很多红利,但是感觉这也使优秀的传统文化逐渐消亡,
胡思乱想.ing
还有10分钟不到,或许就这样了,回家玩我的QQBot去了(笑) 
1号考语文,地理,历史(应该吧),那语文作文怎么写啊,好难,
初中老师说高中老师会讲,
高中老师说初中老师讲过 ,那我怎么办,
本来就不会写长议论文 ...
胡思乱想×2 
*/

SC-0473

题面仙人

query.cpp

#include <bits/stdc++.h>
using namespace std;
int main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    printf("CCF全国青少年信息学奥林匹克联赛CCFNOIP2025序列询问(query)\n       序列询问(query)\n       【题目描述】\n        给定一个长度为n的整数序列a1,a2,...,an。\n        有q次询问,其中第j(1≤j≤q)次询问将会给出Lj,Rj (1≤Lj≤Rj≤n)。定义\n      区间[l,r](1≤l≤r≤n)是.极.好.的,当且仅当区间[l,r]的长度在[Lj,Rj]内,即Lj≤\n      r−l+1≤Rj。定义区间[l,r](1≤l≤r≤n)的.权.值为∑r\n       i=l\n       ai。对于所有i=1,2,...,n,\n       求出所有.包.含i的极好区间的最大权值,即max1≤l≤i≤r≤n{∑r\n      i=l\n       ai |Lj≤r−l+1≤Rj}。\n     【输入格式】\n        从文件query.in中读入数据。\n     输入的第一行包含一个正整数n,表示序列长度。\n        输入的第二行包含n个整数a1,a2,...,an。\n     输入的第三行包含一个正整数q,表示询问次数。\n        输入的第j+3(1≤j≤q)行包含两个正整数Lj,Rj,表示第j次询问。\n      【输出格式】\n        输出到文件query.out中。\n      对于每次询问,设包含i (1≤i≤n)的极好区间的最大权值为ki,输出一行一个\n       非负整数,表示⊕n\n     i=1\n       ((i×ki)mod264),其中⊕表示.二.进.制.按.位.异.或。注意:对于任\n     意.整.数x,存在.唯.一.的.非.负.整.数x′满足x′≡x(mod264)且0≤x′≤264−1,则记\n     xmod264=x′。\n       【样例1输入】\n       1 4\n       2 24‐5 1\n      3 3\n       4 12\n      5 34\n      6 14\n      【样例1输出】\n       1 18446744073709551603\n        2 8\n       第12页共14页\n      CCF 全国青少年信息学奥林匹克联赛CCFNOIP2025\n     序列询问(query)\n       3 4\n       【样例1解释】\n       对于第1次询问:\n      • 包含1的极好区间为[1,1]和[1,2],权值分别为2,6;\n      • 包含2的极好区间为[1,2],[2,2] 和 [2,3],权值分别为 6,4,−1;\n      • 包含3的极好区间为[2,3],[3,3] 和 [3,4],权值分别为 −1,−5,−4;\n        • 包含4的极好区间为[3,4]和[4,4],权值分别为−4,1。\n     因此k1 =6,k2 =6,k3 =−1,k4 =1。\n       对于第2次询问,k1=2,k2=2,k3=2,k4=2。\n      对于第3次询问,k1=6,k2=6,k3=2,k4=2。\n      【样例2】\n     见选手目录下的query/query2.in 与 query/query2.ans。\n        该样例满足测试点2,3的约束条件。\n     【样例3】\n     见选手目录下的query/query3.in 与 query/query3.ans。\n        该样例满足测试点4的约束条件。\n       【样例4】\n     见选手目录下的query/query4.in 与 query/query4.ans。\n        该样例满足测试点6,7的约束条件。\n     【样例5】\n     见选手目录下的query/query5.in 与 query/query5.ans.\n        该样例满足测试点8∼10的约束条件。\n        【样例6】\n     见选手目录下的query/query6.in 与 query/query6.ans。\n        该样例满足测试点11,12的约束条件。\n       第13 页 共14页\n        CCF 全国青少年信息学奥林匹克联赛CCFNOIP2025\n     序列询问(query)\n       【样例7】\n     见选手目录下的query/query7.in 与 query/query7.ans。\n        该样例满足测试点13的约束条件。\n      【样例8】\n     见选手目录下的query/query8.in 与 query/query8.ans。\n        该样例满足测试点16∼20的约束条件。\n       【数据范围】\n        对于所有测试数据,均有:\n      • 1≤n≤5×104,1≤q≤1,024;\n        • 对于所有1≤i≤n,均有|ai|≤105;\n       • 对于所有1≤j≤q,均有1≤Lj≤Rj≤n。\n      测试点编号 n≤ q≤ 特殊性质\n      1\n     103\n       1\n     2, 3\n      3, 000\n        50\n        4\n     104\n       128\n       5\n     3 ×104 512\n        无\n     6, 7\n      1, 024\n        A\n     8 ∼10 512 B\n       11, 12\n        13\n        14, 15\n        16 ∼ 20\n       5 ×104\n        C\n     D\n     1, 024\n        E\n     无\n     特殊性质A:对于所有1≤j≤q,均有Lj=Rj。\n      特殊性质B:对于所有1≤j≤q,均有Rj≤32。\n      特殊性质C:对于所有1≤j≤q,均有Lj≤16且Rj≥n−1000。\n        特殊性质D:对于所有1≤j≤q,均有Lj>n/2。\n     特殊性质E:对于所有1≤j≤q,均有Lj>n/4。");
}

sale.cpp

#include <bits/stdc++.h>
#define ll long long
using namespace std;
int c,t,w[5005];
struct Candie{
    int i,a;
}candies[5005];
bool cp(Candie x,Candie y){
    bool result=false;
    result=1.0*x.a/w[x.i]>1.0*y.a/w[y.i];
    if(!result)result=x.a>y.a;
    if(!result)result=x.i<y.i;
    return result;
}
int main(){
//  freopen("sale.in","r",stdin);
//  freopen("sale.out","w",stdout);
    cin>>c>>t;
    for(int i=0;i<t;i++){
        int n,m;
        cin>>n>>m;
        for(int j=0;j<n;j++){
            cin>>candies[i].a;
            candies[i].i=i;
        }
        sort(candies,candies+n,cp);
    }
    cout << candies[0].a;
    return 0;
}

SC-0476

没写完代码,默哀

sale.cpp

#include<bits/stdc++.h>
#define ll long long
using namespace std;
int c,t,n,m,mod=998244353;
struct Candy{
    float a,w,xjb;//a原价,w现价,xjb性价比 
}candy[5012];
int main()
{
//  freopen("sale.in","r",stdin);
//  freopen("sale.out","w",stdout);
    scanf("%d%d",&c,&t);
    while(t--){
        scanf("%d%d",&n,&m);
        for(int 1;i<=n;i++) scanf("%d",&candy.a);//记录原价 

    }

    return 0;
}

SC-0477

DuoCe&998244353 犯下了什么滔天大罪?

query.cpp

#include<bits/stdc++.h>
using namespace std;
int main()
{
//like a rolling wood
}

sale.cpp

#include<bits/stdc++.h>//zheshibufenfen.cpp.cpp;;;/bx/bx/bx/bx/bx/bx
using namespace std;
const int N=100010;
struct can{
int old,now;
double value;
}a[N];
int main()
{
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    int c,t,ans=1;
    cin>>c>>t;
    while(t--)
    {
        int n,m;
        cin>>n>>m;
        for(int i=1;i<=n;i++)
        {
            cin>>a[i].old;
        }
        for(int i=1;i<=n;i++)
        {
            ans*=2;
            ans%=998244353;
        }
        cout<<ans<<endl;
    }
}//cout<<i love you,but i don't love DuoCe&998244353<<endl;

SC-0478

不打分号

tree.cpp

#include<bits/stdc++.h>
using namespace std;
int main(){
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
    const int N=1e6+10;
    int p[N];
    int t
    cin>>t;
    int n, m;
    for(int i=0;i<t;i++){
        cin>>n>>m;
        int num;
        for(int j=0;j<n-1;j++){
            cin>>p[j];
            num+=p[i];
        }
        cout<<p[i]+p[i]/2;
        cout<<endl; 
    }

    return 0;
}

SC-0479

Hello world,但是不打分号 +1

tree.cpp

#include<bits/stdc++.h>
using namespace std;
int main()
{
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
    cout<<"HOlle World!"
    return 0;
}

SC-0483

高考去了

该选手在提交的 3 个文件的结尾都为如下代码

#include<bits/stdc++.h>
using namespace std;
long long a[10005]; 
long long n,q;
int main()
{
    cin>>n;
    while(n++)
        cout<< "为啥这么难,根本就不会 //再见了c++ //高考去了 "<<endl;
    //为啥这么难,根本就不会
    //再见了c++
    //高考去了 
}

SC-0484

1145141919810

tree.cpp

int main(){
    freopen("tree.in","r",stdin);
    freopen("tree.out","w",stdout);
    cin>>q;
    while(q--){
    cin>>n>>m;
    for(int i=0;i<n;i++){
        cin>>c[i];
    }
    cout<<1145141919810;
}

    return 0;
}

SC-0500

语法大蛇

candy.cpp

#include<iostream>
using namespace std;
int main{
    freopen("candy.in","r",stdin);
    freopen("candy.out","w",stdout);
    const n,m,x,y,k;
    cin>>n>>m;
    for(int i=1;i<=n;i++){
        cin>>x>>y;
    }
//  if(k/2==0){
//      num[k]=x;
//  }
//  else num[k]=y;
//  int count;
//  for(j=1;j<=n;j++) {
//  }
    if(n==2 || m==10){
        cout<<4<<endl;
    }
    if(n==3 || m==15){
        cout<<8<<endl;
    }
    if(n==100 || m==100){
        cout<<33<<endl;
    }
    else cout<<0<<endl;

    fclose(stdin);
    fclose(stdout);
}

注:该选手仅提交了这一份代码

SC-0512

明年再战

tree.cpp

//luogu uid 1255837
//sr uid 134311106

//qwq

//自身实力不够,理所当然做不出来。
//明年再战!

//freopen("candy.in","r",stdin);
//freopen("candy.out","w",stdout);

//feopen("candy.in","r",stdin);
//feopen("candy.out","w",stdout);

//唉。

SC-0520

不愧是你 520

query.cpp

//我爱你,CCF 
//0520ccf

sale.cpp

//When you crash and burn
//I'm Luogu 886055
//NOIP is too hard for me
//so I will die
//我是 *** 
//我是 *** 
//我是 *** 
//我是 *** 
//我是 *** 

---
此处省略 57 个 //我是 *** 
---

//*** 的,能一等吗?
//不会难度真对标 NOIP2022 吧
//蓝题我切不了了?????????????????????????????????????????????????????

SC-0521

明年再战

candy.cpp

/*
12:30 了,还有什么好说的? 
冲了两个半小时 T4 正解,最后还不是只能交一个 16pts 性质 
不要被 CSP-S 2025 的超常发挥麻痹了自己 
我其实就是一只 NOIP T2 都不会的菜狗 
本来以为还能去联合省选玩一下的,现在看来,怎么可能?
100 + 28 + 8 + 16,燃尽了  
明年高一再战吧/ll 

luogu uid = 1055731
*/

SC-0536

何意味

tree.cpp

#

注:以上为代码全部内容

SC-0541

请多给点分

sale.cpp

/*
测评机啊测评机,你是我的前世,我是你的今朝。
若要与我续缘,请多给点分。

42pts 
*/

tree.cpp

/*
我在时间的长河里徜徉 
我本想逆流而上,探寻万物之初,却发现难之又难 
我只能顺流而下。
一路上,我见到了太多事情 
人有悲欢离合,可我生而为人,却并没有。
在这时间长河中,我看见了太多离别。
我最初还会同情,伤心。
可见的多了,才明白:
人们总是会分离的。
因此,我成为了一个记录者。
记录我这一路的所见。
在时间长河的尽头,我将其抛出。
见证了新一轮的”起源“。 
*/

SC-0551

如你所愿

candy.cpp

//好像是dp,然后优化?矩快?
/*
我要上迷惑大赏 洛谷 锣鼓 luogu luogu.com.cn www.luogu.com.cn
我是xiaoyang111(890311/1220111),SC-0551,初二,祝我RP++
没啥活可以整了啊!!!
----------
好像是贪心,什么个策略?
能否逮着一个和最小的糖果一直买?
然后其他糖果要么只买一个要么不买?好像这个是对的
A性质:逮住一个糖果最小价格一直买
好的,优势在我,现在才8:50把T1切掉了!
*/
//Intel Core Ultra 9 285K CPU @ 3.70 GHz
/*
qwq:
0:00~0:05 建文件+开题 ok
0:05~0:10 想T1 ok
0:10~0:20 写T1 ok
0:20~0:35 开T2 不会
0:30~0:45 开T3 不会
0:45~1:00 开T4 不会
1:00~1:30 想想T2的最优策略是什么+暴力 题读假了
1:30~1:45 改T2 ok
1:45~2:15 想想T3有哪些分 先把甲酸写了好像假飞了,dp只会n^4的,还假了
2:15~2:30 想想T4有哪些分 会O(nVlogn)了
2:30~3:15 写T4的O(nVlogn) 3:20才弄完
3:20~3:40 想想T3怎么打暴力(较高档的) 先把最低档超级暴力写了(写到3:35)算了先把T2写完
3:30~3:55 把T2的暴力补充完 ok
3:55~4:20 写T3的超级暴力 ok
4:15~4:30 jc ok
*/

SC-0559

求关注

sale.cpp

/*
lg749318
de termination,dreamer
未AFO
0 1
3 2
1 3 5
*/

SC-0567

I love CCF

query.cpp

#include<bits/stdc++.h>
using namespace std;
int main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    cout<<"23423524353245345"<<"\n";
    cout<<"23423524353245345"<<"\n";
    //此处省略若干个
    cout<<"23423524353245345"<<"\n";
    cout<<"I love "<<"\n";
    cout<<"CCF"<<"\n";
    cout<<"23423524353245345"<<"\n";
    //此处省略若干个
    cout<<"23423524353245345"<<"\n";
    cout<<"23423524353245345"<<"\n";v
    return 0;
}

SC-0573

编译大蛇

sale.cpp

//g++ sale.cpp -o sale -std=c++14 -O2 -Wextra -Wall -fsanitize=address,undefined&&cp sale1.in sale.in&&size sale&&time ./sale&&code sale.out&&diff sale.out sale1.ans

//此处省略若干个编译命令

//g++ sale.cpp -o sale -std=c++14 -O2 -Wextra -Wall -fsanitize=address,undefined&&cp sale11.in sale.in&&size sale&&time ./sale&&code sale.out&&diff sale.out sale11.ans

//expresssssssss myyyyyy  anggggggggggeeeeeeeeeeeeeerrrrrrrrrrrrrrrr
//expresssssssss myyyyyy  anggggggggggeeeeeeeeeeeeeerrrrrrrrrrrrrrrr
//expresssssssss myyyyyy  anggggggggggeeeeeeeeeeeeeerrrrrrrrrrrrrrrr
//expresssssssss myyyyyy  anggggggggggeeeeeeeeeeeeeerrrrrrrrrrrrrrrr

//此处省略 100+ 个 //expresssssssss myyyyyy  anggggggggggeeeeeeeeeeeeeerrrrrrrrrrrrrrrr

SC-0574

连续剧

sale.cpp

//哇,还有连续剧欸
//看完 candy 还可以接着看 sale
//有被爽到了欸

//要坏掉啦

SC-0583

Big northeast is my hometown!

query.cpp

#include<bits/stdc++.h>
#define ll long long
#define str string
#define db double
using namespace std;
int main() {
    freopen(" query.in", "r", stdin);
    freopen(" query.out", "w", stdout);
    ios::sync_with_stdio(false);
    cin.tie(nullptr), cout.tie(nullptr);
    cout << "Big northeast is my hometown!" << '\n';
    return 0;
}

SC-0592

else,那 if 呢?

query.cpp

#include <bits/stdc++.h>
#define int long long
using namespace std;
typedef unsigned long long ull;

const int N = 5e4 + 5;

int n, q;
int a[N], sum[N];

signed main()
{
    freopen("query.in", "r", stdin);
    freopen("query.out", "w", stdout);
    scanf("%lld", &n);
    for (int i = 1; i <= n; i++)
        scanf("%lld", &a[i]), sum[i] = sum[i - 1] + a[i];
    scanf("%lld", &q);
    while (q--)
    {
        int l, r;
        scanf("%lld%lld", &l, &r);
        else
        {
            ull ans = 0;
            for (int i = 1; i <= n; i++)
            {
                int res = -1e18;
                for (int len = l; len <= r; len++)
                {
                    for (int k = max(1ll, i - len + 1); k <= i && k + len - 1 <= n; k++)
                    {
                        res = max(res, sum[k + len - 1] - sum[k - 1]);
                    }
                }
                ull now = i * res;
                ans ^= now;
            }
            printf("%llu\n", ans);
        }
    }
    return 0;
}

SC-0593

未来可期

query.cpp

// my first noip experience is terrible.Wish me a better future.

SC-0603

dream of noip

query.cpp

/*
!noip@Nov29,2025:dream
My dream.
Now I'm trying my best to reach you.
*/

SC-0604

The Sky Belongs To HAAVK

sale.cpp

int TheSkyBelongsToHAAVK[5005];

SC-0606

进食厚仁

该选手在 4 个文件的结尾都有如下代码

/*
不要混用读入读写 
*/

SC-0610

不打分号 +1

sale.cpp


#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=5005,mod=998244353;
int c,T;
int n,m,ans;
signed main()
{
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
    freopen("sale.in","r",stdin);
    freopen("sale.out","w",stdout);
    cin>>c>>T;
    while(T--)
    {
        cin>>n>>m;
        if(c==18)
        {
            ans=1;
            for(int i=1;i<=n;i++)
            {
                ans*=2;
                ans%=mod;
            }
            cout<<ans<<"\n"
        }       
    }

    return 0;
}

SC-0616

发现真理

tree.cpp

//方案数滚出CCF,信息竞赛属于暴

SC-0617

一路走好

query.cpp

IGpig gives up!
it's toooooo difficult for pig.
aaaaaaaaah!!!!!
tell me why,
I'm going to AFO!!!!!

SC-0619

追忆 + 如你所愿

query.cpp

//2025年,初生第一次参加csps就取得了一等奖,然后…… 
//什么题 诗人握持
//三根横线是什么鬼啊喂 ≡≡≡≡≡≡≡≡≡≡
//他甚至还有标靶 ⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕⊕
//异或?何意味
// ∑∑∑∑∑∑∑∑∑∑∑∑∑∑∑∑
//人心不足骑宝马,狭路相逢宝马胜
//宝马常有,而渣渣不常有
//嗯,兑。英改师
//何意味呢,我SC-S0969写了那么多首金曲,迷惑行为就给我放一首沟槽的美芬
//能不能把其他的也一并放出来? 
/*
国土阵线纯何意味
冰岛人为了推销新卡脸都不要了
byd
根本玩不下去了
什么德美跳
德日直伤
米色团 
谜语 
全没了 
剩个德日海哈哈
玩不了了
冰岛人的母亲被芬兰人** 
    ↑什么啊,话能不能说完啊,不要只说一半啊 
*/

tree.cpp

/*
    迷惑大赏预定 mian,嗯,兑,英改师 
       DDDDDD    EEEEEEEE   LL     TTTTTTTT     A        RRRRRRR    UU      UU   NN      NN   EEEEEEEE
       DD    DD  EE         LL        TT       AAA       RR    RR   UU      UU   NNNN    NN   EE
       DD     DD EE         LL        TT      AA AA      RRRRRRR    UU      UU   NN NN   NN   EE
       DD     DD EEEEEEEE   LL        TT     AA   AA     RR RR      UU      UU   NN  NN  NN   EEEEEEEE
       DD     DD EE         LL        TT    AAAAAAAAA    RR  RR     UU      UU   NN   NN NN   EE
       DD    DD  EE         LL        TT   AA       AA   RR   RR     UU    UU    NN    NNNN   EE
       DDDDDD    EEEEEEEE   LLLLLLL   TT  AA         AA  RR    RR     UUUUUU     NN      NN   EEEEEEEE
    何意味?
    我同学评教的时候在机房一遍过了招笑骑士
    我还在打二周目的小丑
    打了几天了啊啊啊啊啊 
    垃圾游戏狗都不玩 
*/

SC-0623

RP++

query.cpp

@songhy_QWQ(luogu:1098931)
考S组RP用光了,明年再战!

SC-0632

query.cpp

CCF 保佑我

//CCF保佑我!!!

SC-0634

有的兄弟有的

candy.cpp

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=1e5+5;
int id,mi=1e18;
int n,m;
struct T{
    int x,y,id;
}a[N];
bool cmp(T X,T Y){
    if(X.x!=Y.x)
        return X.x<Y.x;
    return (X.id==id)<(Y.id==id);
}
signed main(){
    freopen("candy.in","r",stdin);
    freopen("candy.out","w",stdout);
    cin>>n>>m;
    for(int i=1;i<=n;i++){
        cin>>a[i].x>>a[i].y;
        a[i].id=i;
        if(a[i].x+a[i].y<mi){
            mi=a[i].x+a[i].y;
            id=i;
        }
    }
    sort(a+1,a+n+1,cmp);
    bool flag=0;
    int num=0;
    int ans=0;
    int ID;
    for(int i=0;i<=n;i++){
        num+=a[i].x;
        int tmp=m;
        int res=0;
        if(a[i].id==id){
            flag=!flag;
            ID=i;
        }
        if(tmp<num){
            break;
        }
        res+=i;
        tmp-=num;
        res+=(tmp/mi)*2;
        tmp%=mi;
//      if(flag){
//          if(tmp>=a[ID].y){
//              res++;
//          }
//      }
//      else{
//          if(tmp>=a[ID].x){
//              res++;
//          }
//      }
//有没有搞迷惑行为的大佬给我讲讲这段为什么不能加?锣鼓uid 1063878 
        ans=max(ans,res);
    }
    cout<<ans;
    return 0;
}

SC-0636

RP++

query.cpp

#include<bits/stdc++.h>
using namespace std;
int main(){
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    printf("RP++");
    return 0;
}

SC-0646

I Love CCF

query.cpp

#include<bits/stdc++.h>
using namespace std;

int main(){
    freopen("query.in" , "r" , stdin);
    freopen("query.out" , "w" , stdout);
    cout << "I love ccf";
    return 0;
}

SC-0663

I AK CSP

query.cpp

signed main ()
{
    I AK CSP
    cin >> n >> q;
    for (int i = 1 ;i <= n ;i ++)   cin >> b[i] ,b[i] += b[i - 1];
    for (int l = 1 ;l <= n ;l ++)
        for (int j = 1 ;j + l - 1 <= n ;j ++)
            st[l].a[j] = b[j + l - 1] - b[j];
    for (int i = 1 ;i <= n ;i ++)   st[i].init ();
    while (q --)
    {
        int l ,r;
        cin >> l >> r;
        int kk = 0;
        for (int i = 1 ;i <= n ;i ++)
        {
            int ans = INT_MIN;
            for (int j = l ;j <= r ;j ++)
                ans = max (ans ,st[j].qqry(1ll ,n - j + 1ll));
            kk ^= (i * 1ll * ans) % (1ll << 64);
        }
        cout << kk << endl;
    }
    return !!!!! ("ShZhao" && "SHzhao");
}//Code by Lyyq.
//wage

//以下是阳历粘贴区域:

SC-0671

I AK NOIP

query.cpp

#include<bits/stdc++.h>
#define I ios::sync_with_stdio(0);
#define AK cin.tie(0);
#define NOIP cout.tie(0);
#define int long long 
#define endl '\n'
using namespace std;
const int maxn=5e4+10;
int n,a[maxn],q,s[maxn],qu[maxn];
signed main(){
    I AK NOIP
    freopen("query.in","r",stdin);
    freopen("query.out","w",stdout);
    cin>>n;
    for(int i=1;i<=n;i++){cin>>a[i]; s[i]=s[i-1]+a[i];}
    cin>>q;
    while(q--){
        memset(qu,-1e18,sizeof(qu));
        int L,R; cin>>L>>R; 
        for(int i=1;i<=n-L+1;i++){
            for(int j=i+L-1;j<=n && j-i+1<=R;j++){
                for(int k=i;k<=j;k++)qu[k]=max(qu[k],s[j]-s[i-1]);
            }
        }
        int ans=0; 
        for(int i=1;i<=n;i++)ans^=(i*qu[i]);
        cout<<ans<<endl;
    }
    return 0;
}

注:该选手于 4 道题都使用了相似的 define 写法

SC-0679

求而不得

candy.cpp

/*
7 100
5 12
6 9
2 91
9 71
1 37
7 83
3 61
6 9 6 9 6 9 
为啥大样例过不去呜呜呜
CCF主人可以让我 A 掉 T1 吗 

如果有一天我将消失不见
街上的路灯还会不会那么刺眼
人们三三两两地走在海边
他们会对哪个浪花多看一眼
他接着笑啊 万家灯火啊 擦身而过
车水马龙的路口 他扎进了黑夜
他接着笑啊 莫名其妙啊 藏不住啊
渐渐模糊的背影和夸张的脸
他说
明明好像感觉拥有一切
却又 随时感觉正在失去一切
生命 就像悲剧里面写的那些章节
看到最后一页发现自己是主角
想太多吧 想太多吧 我呢喃地问着他的名字
他却摆了摆肩闭上眼说 求而不得 
*/

SC-0686

命如尘露,仰而难触。

candy.cpp

//命若繁星,望而不及。
//赞美【命运】。
//您虔诚的信徒向您祈愿。
//恩主大人,今日,观我勇否?

SC-0694

如你所愿

candy.cpp

/*
不知道能不能上迷惑行为大赏?
之前刚看完龙族,然后同学推荐去听IVORY TOWER,结果没有会员,艹 
并且看见楚子航被装饰成了奥丁,觉得江南活该抑郁

愿某人保佑我,NOIP不要寄(至少T1的大样例全过了,T1先别寄,保我100),最好能1= 
但是T1这么简单,我这种juruo都能对,那1=线至少200多吧? 

It's not easy lose my grip those dreams are calling me
Like a hermmit used to find a reason not to be
You teach me about the history of our fallen heroes
Realize I have found a solid companion

Cos
I was afraid
Was alone
In a cave
Like a stone

This dance is so dangerous
So cryptic it changes us
But the secrets we have found
Can give power to all of us
Dance shook me dangerous
So glad that you came to us
(这句忘了)

Do you hear me
Destination I
Got invitation I
Gonna change all my sense of reality
Gonna change reality
(又忘了)
Destination I
Got my information I
Gonna change all my sense of reality
Gonna change reality

Sakura最好了(划掉) 
*/

SC-0695

三体人

query.cpp

/*
4
2 4 -5 1
 3
 1 2
 3 4
 1 4

orz主帮帮我 
rsskxzxd
wattcmyc
they're not real 
*/

结语

制作不易,还请点赞支持。