摘要: Codeforces Round 972 (Div. 2) 总结 A #include <bits/stdc++.h> using namespace std; int n; char a[]={'a','e','i','o','u'}; void solve() { cin>>n; int x=n 阅读全文
posted @ 2024-10-24 21:12 zhouruoheng 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Codeforces Round 980 (Div. 2) 总结 A 简单小学算数题。 如果 \(b \le a\),直接输出 \(a\)。 否则,列方程 \(a-x=b-2x\),\(x=b-a\),输出 \(a-x\),即 \(2a-b\)。 #include <iostream> #inclu 阅读全文
posted @ 2024-10-24 11:10 zhouruoheng 阅读(18) 评论(0) 推荐(1) 编辑