关于 CSP 的逆天价格

J 310+S560=870

image
image
真是

2 个赞

和去年差不多的。

1 个赞

好贵啊

1 个赞

我曾经以为贫困生补助只是个笑话

我在j和s的初赛的草稿纸上都fk了CCF,而且都加上了一句话:考个CSP这么贵,CCF大大滴坏

doge

我们老师不给报销


#include <iostream>
#include <windows.h>
#include <chrono>
#include <thread>

using namespace std;

// 设置控制台文本颜色
void setColor(int color) {
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color);
}

// 打印大号ASCII艺术字
void printBigText() {
    cout << R"(
  _____ _   _ _  __  _____   _____ _____ 
 |  ___| | | | |/ / /  __ \ /  ___|  ___|
 | |_  | | | | ' /  | /  \/| |   | |__  
 |  _| | | | |  <   | |    | |   |  __| 
 | |   | |_| | . \  | \__/\| |___| | 
 \_|    \___/\_|\_\  \____/ \____/\|
)" << endl;
}

int main() {
    const int colors[] = {
        0x0C, // 亮红
        0x0E, // 亮黄
        0x0A, // 亮绿
        0x0B, // 亮青
        0x09, // 亮蓝
        0x0D  // 亮紫
    };
    const int colorCount = sizeof(colors) / sizeof(colors[0]);
    int colorIndex = 0;

    while (true) {
        system("cls"); // 清屏
        setColor(colors[colorIndex]);
        printBigText();
        
        colorIndex = (colorIndex + 1) % colorCount;
        this_thread::sleep_for(chrono::seconds(1)); // 等待1秒
    }

    return 0;
}

这个东西你们可能感兴趣