摘要: /*数字去重和排序*/ #include<bits/stdc++.h> using namespace std; int main() { set<int >s; int m; while(~scanf("%d",&m)) { s.clear(); int n; for(int i = 0; i < 阅读全文
posted @ 2021-09-27 21:01 爽爽子的秃头生活 阅读(41) 评论(0) 推荐(0)
摘要: import java.math.BigInteger; import java.util.Scanner; public class gaojingdujiafa { public static void main(String[] args) { BigInteger []d = new Big 阅读全文
posted @ 2021-09-27 20:58 爽爽子的秃头生活 阅读(29) 评论(0) 推荐(0)