上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 56 下一页
摘要: #include<bits/stdc++.h> using namespace std; int main() { int m,t,s; //m个苹果,t分钟吃一个,总时间s cin >> m >> t >> s; int n = s / t; //理论上s分钟吃了n个 if(s % t != 0) 阅读全文
posted @ 2024-07-03 16:40 CRt0729 阅读(142) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:36 CRt0729 阅读(49) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:35 CRt0729 阅读(82) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:33 CRt0729 阅读(17) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:31 CRt0729 阅读(60) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:30 CRt0729 阅读(29) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { int n; cin >> n; if(n % 2 == 0)cout << "even"; else cout << "odd"; return 0; } 阅读全文
posted @ 2024-07-03 16:28 CRt0729 阅读(20) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:27 CRt0729 阅读(87) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; 阅读全文
posted @ 2024-07-03 16:25 CRt0729 阅读(43) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e3+10,inf = 0x3f3f3f3f; int main() { int a,b,c,d; cin >> a >> b >> c 阅读全文
posted @ 2024-07-03 16:20 CRt0729 阅读(33) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 56 下一页