摘要:
Windows + L 锁屏 Windows + R:(开启 cmd) "psr.exe" 步骤记录器 "osk" 虚拟键盘 Windows + T 任务栏内切换 Windows + '1~9' 打开任务栏对应应用 Windows + E 开文件管理器 Windows + D 显示桌面 Window 阅读全文
摘要:
都是些水题 两个数读入用map(int, input().split()) 一个数组 a = list(map(int, input().split())) 定义二维数组 a = [[0 for i in range(n)] for j in range(m)] 做CF题 Helpful Maths 阅读全文
摘要:
按位贪心 忘了 就是对于每一位其实是各样的 考虑每一位如何成为贡献 初始为0之后变为1 初始为1最后还是1 对每一位统计 #include <bits/stdc++.h> using namespace std ; #define rep(i, a, b) for (int i = a; i <= 阅读全文
摘要:
最近题有点多 这边就只能咕掉了 放一下STD T1 吴翼粉刷匠 #include <cstdio> #include <set> using namespace std; typedef long long llint; const int MAXN = 1000010; const int MOD 阅读全文