爱喝零度可乐
爱喝零度可乐
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱喝零度可乐的博客
全部文章
(共85篇)
题解 | #日期差值#
#include<cstdio> int main() { int Mday[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int year1, mon1, day1; int year2, ...
2023-03-02
0
188
题解 | #手机键盘#
#include<cstdio> #include<map> using namespace std; int main() { map<char, int> inputetime = {//每个字母按几下 {'a', 1}, ...
2023-03-02
0
230
题解 | #剩下的树#
#include<cstdio> int main() { int tree[10001]; int L, M ; scanf("%d%d", &L, &M); for (int i = 0; i <= L; ++i) { tree...
2023-03-02
0
184
题解 | #Old Bill#
#include<cstdio> int main() { int n, x, y, z; scanf("%d\n %d %d %d", &n, &x, &y, &z); int a, b,price; int max=0,maxa,maxb; ...
2023-02-27
0
249
题解 | #与7无关的数#
#include<cstdio> int Judge7(int n){ int a,b,c; int x=n; c=n%10; n=n/10; b=n%10; n=n/10; a=n%10; if(0==x%7 || 7==...
2023-02-27
0
181
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页