北京天源迪科合肥软测面试

11.21 一面,线下
问实习经历
问项目内容
问简历技能
两份实习都是自己找的吗(✓)
前面两家为什么不待了(答无转正)
大学接触过软件测试吗(答学了软件工程)
为什么选择测试
软件生命周期
测试流程
在整个测试生命周期,测试占什么地位
为什么要有测试(答风险和成本=>展开讲)
问性能/压力测试
数据库增删改查
linux 常用命令
linux 如何查看日志
如何测试微信点赞功能
给需求文档如何写测试文档
测试文档测试点
问期望实习和转正薪资
问接受加班情况
,,,
反问
问了挺多的,记得住的就这些
没做准备前一天聊第二天就面,还需努力
全部评论
工资怎么说
点赞 回复 分享
发布于 2024-12-05 10:09 江苏
过了吗
点赞 回复 分享
发布于 2024-11-27 19:00 江苏
合肥base的能开多少
点赞 回复 分享
发布于 2024-11-24 22:00 河北

相关推荐

(码风很屎别在意~)1.很简单直接都是一个数字就行#include <bits/stdc++.h>using namespace std;#define endl '\n';void solve() {int n;cin >> n;vector<int> v(n + 1);for(int i = 1; i <= n; i++) {cin >> v[i];cout << (n + 1) - v[i] << " \n"[i == n];}}int main() {ios::sync_with_stdio(0);cin.tie(0),cout.tie(0);int t;cin >> t;while(t--) {solve();}}2.只用算平方就行了,直接暴力。如下#include <bits/stdc++.h>using namespace std;#define endl '\n';bool cal(int x) {int tot = 0;for(int i = 1; i * i <= x; i++) {if(x / i * i == x)tot += 2;}if(tot % 2)return false;else return true;}void solve() {int l, r;cin >> l >> r;int lmin = sqrt(l);int ans = 0;lmin = lmin * lmin == l ? lmin : lmin + 1;if(lmin == 1)ans++, lmin++;for(int i = lmin; i * i <= r; i++) {if(cal(i * i))ans++;}cout << ans;}int main() {ios::sync_with_stdio(0);cin.tie(0),cout.tie(0);int t;t = 1;while(t--) {solve();}}3.稍微推一下公式就行,题解如下#include <bits/stdc++.h>using namespace std;#define endl '\n';#define int long longint mod = 1e9 + 7;const int N = 1e6 + 10;int a[N];void solve() {int k, q;cin >> k >> q;for(int i = 1; i <= k; i++) {a[i] = 1;}a[k + 1] = k ;int tot = k;for(int i = k + 2; i <= 1000000; i++) {tot = ((tot + a[i - 1])  - a[i - k - 1]);a[i] = tot % mod;}while(q--) {int x;cin >> x;cout << a[x] % mod << endl;}}signed main() {ios::sync_with_stdio(0);cin.tie(0),cout.tie(0);int t;t = 1;while(t--) {solve();}}
一起聊美团
点赞 评论 收藏
分享
评论
4
3
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务