摘要: code #include<algorithm> #include<iostream> #include<cstdio> using namespace std; int gcd(int a,int b){ return b==0?a:gcd(b,a%b); } int main(){ ios::s 阅读全文
posted @ 2022-01-29 13:26 ethon-wang 阅读(36) 评论(0) 推荐(0) 编辑