摘要: A. Insert Digit 放在第一个比他小的数前面 #include <bits/stdc++.h> using namespace std; void solve() { int n, d; cin >> n >> d; string s; cin >> s; for (char i: s) 阅读全文
posted @ 2023-04-05 16:57 PHarr 阅读(43) 评论(0) 推荐(0) 编辑
摘要: A-小石的图形 #include<bits/stdc++.h> using namespace std; const double pi = 3.1415926; int32_t main() { double n , r; cin >> n; r = n / pi; printf("%.3lf" 阅读全文
posted @ 2023-04-05 15:43 PHarr 阅读(15) 评论(0) 推荐(0) 编辑