ChordXD
ChordXD
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Готовы, меняй, цвети
蓄势 蜕变 绽放
全部文章
/ 题解
(共5篇)
题解 | #Old Bill#
#include<iostream> using namespace std; int main(void) { int n; while (cin >> n) { int x, y, z; cin >> x &g...
C++
2022-02-09
0
355
题解 | #Old bill#
牛客网的uvalive提交姬炸了,自行去某神秘网站提交即可。 思路:c语言模拟,读懂题就行了。 #include<iostream> using namespace std; int main(void) { int t; cin >> t; whi...
C++
2022-02-09
0
371
题解 | #与7无关的数#
思路:c语言水题,看清题目要求即可。 #include<iostream> using namespace std; bool has7(int n){ while(n > 0){ if(n % 10 == 7) return true; ...
C++
2022-02-08
0
408
题解 | #对称平方数1#
题解:C语言水题 #include<iostream> using namespace std; int reverse(int n){ int ans = 0; while(n > 0){ ans *= 10; ans += (n...
C++
C
2022-02-08
0
353
19牛客暑期多校1A Equivalent Prefixes
题目连接:https://ac.nowcoder.com/acm/contest/881/A 题意 对于两个数组区间l,r ,rmq相等的定义是:对于l,r内任意子区间rmq值的对应数组下标都相等(即任意子区间的最小值对应的下标都相等),那么这两个数组的l,r区间RMQ相等。 现在问你给你两个序列,...
牛客暑假多校训练营
2019-07-19
1
956