摘要: 787. 归并排序 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 int n, a[100001]; cin >> n; 7 for(int i = 0; i < n; i++) cin >> a[i]; 阅读全文
posted @ 2020-09-05 22:59 $KAMISAMALZ 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1. A + B 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 typedef unsigned long long L; 5 6 int main() 7 { 8 L n, m; cin >> n >> m; 9 cout << n+m; 阅读全文
posted @ 2020-09-05 22:34 $KAMISAMALZ 阅读(241) 评论(0) 推荐(0) 编辑