01 2023 档案
摘要:题目链接:https://www.luogu.com.cn/problem/P1014 有理数可枚举 In 1873 Cantor proved the rational numbers countable, i.e. they may be placed in one-one correspond
阅读全文
摘要:编译器安装 编译器可以选择 Clang 或者 GCC,在 MacOS 上 Clang 的安装更为简单一些。 Clang(推荐) 打开终端输入命令, clang -v 查看是否已经安装。 如果已经安装,会输出类似于如下的信息: Apple clang version 14.0.0 (clang-140
阅读全文
摘要:.gitignore 文件的作用 A gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected; see t
阅读全文
摘要:题目链接: https://www.luogu.com.cn/problem/P1008 置顶题解 暴力,加简化的判断,数学原理,2个集合内所有数相加相乘结果一样,2个集合的内容一样(没错我自己编得,灵感并不是我自己的,感谢帮我的大大) 置顶的题解中的数学原理应该是存在问题。我尝试证明的整体思路是不
阅读全文
摘要:题目地址:https://www.luogu.com.cn/problem/P1538 #include <iostream> int main() { /* * # Seven-segment Display * * The way how the program prints decimal n
阅读全文