摘要: 跳跳 #include<bits/stdc++.h> using namespace std; int gcd(int x ,int y){ return y == 0 ? x : gcd(y , x % y); } #define x first #define y second struct n 阅读全文
posted @ 2023-03-20 12:35 wmjlzw1314 阅读(23) 评论(0) 推荐(0)