Tyro7
Tyro7
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Tyro7的博客
全部文章
/ 题解
(共3篇)
题解 | #C题#
c题 #include <bits/stdc++.h> using namespace std; #define ll long long int x; void sqrt1(){ printf("%d\n",x); for(int i=x;i>=2;i--){ ll t=...
C++
2025-02-27
0
47
题解 | #B题#
b题for循环 #include <stdio.h> #include <string.h> #define MAX_LEN 20000 int main() { char s[MAX_LEN]; scanf("%s", s); int len = strlen(s...
C++
2025-02-27
0
30
题解 | #A题#
萌新a题c++ using namespace std; int main(){ int n; cin>>n; int m; if(n%7>5){ m=15*(n/7)+15; } else{ m=15*(n/7)+3*(n%7); } cout<&l...
C++
2025-02-27
0
27