牛客861440576号
牛客861440576号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客861440576号的博客
全部文章
(共39篇)
题解 | #Old Bill#
// // Created by yang on 2023/2/8. // #include "cstdio" /** * todo 描述 Among grandfather's papers a bill was found. 72 turkeys $_679...
2023-02-08
0
324
题解 | #百鸡问题#
#include <iostream> int main() { int n; // 100 只鸡 // 5元 大鸡 x // 3元 小鸡 y // 1/3元 鸡娃 z while (EOF != scanf("%d", &n...
2023-02-08
1
372
题解 | #百鸡问题#
#include <iostream> int main() { int n; // 100 只鸡 // 5元 大鸡 x // 3元 小鸡 y // 1/3元 鸡娃 z while (EOF != scanf("%d", &n...
2023-02-08
0
314
题解 | #与7无关的数#
#include "cstdio" /** 描述 一个正整数,如果它能被7整除,或者它的十进制表示法中某个位数上的数字为7, 则称其为与7相关的数.现求所有小于等于n(n<100)的与7无关的正整数的平方和。 输入描述: 案例可能有多组。对于每个测试案例输入为一行,正整数n,(n<10...
2023-02-08
0
596
题解 | #手机键盘# 手机键盘 九宫格
#include <iostream> #include <cstdio> #include <string> #include <map> using namespace std; int main() { map<int, cha...
2023-02-08
0
359
题解 | #剩下的树#
#include <iostream> using namespace std; int main() { int L, M; bool tree[10000]; scanf("%d %d", &L, &M); // 初始化 0~L之间的所有树 fo...
2023-02-08
0
232
题解 | #Day of Week#
#include <cstdio> #include "string" #include "map" // 引入map using namespace std; // c++ 标准 /* 输入: 9 October 2001 14 October 2001 输出: Tuesd...
2023-02-08
1
328
题解 | #对称平方数1#
#include "cstdio" // 返回一个数的倒序数 int reverse(int n) { int a = 0, b = 0; while (n != 0) { a = n % 10; // 余数 n = n / 10; // 每次消除...
2023-02-06
0
234
题解 | #反序数#
#include "cstdio" // 返回一个数的倒序数 int reverse(int n) { int a = 0, b = 0; while (n != 0) { a = n % 10; // 余数 n = n / 10; // 每次消...
2023-02-06
1
380
首页
上一页
1
2
3
4
下一页
末页