摘要:
比赛链接:https://atcoder.jp/contests/abc177/tasks A - Don't be late #include <bits/stdc++.h> using namespace std; int main() { int d, t, s; cin >> d >> t 阅读全文
摘要:
比赛链接:https://atcoder.jp/contests/abc176 A - Takoyaki #include <bits/stdc++.h> using namespace std; int main() { int n, x, t; cin >> n >> x >> t; cout 阅读全文
摘要:
第一次 ak ABC,纪念一下。 比赛链接:https://atcoder.jp/contests/abc174 A - Air Conditioner #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> 阅读全文
摘要:
做完前四题还有一个半小时... 比赛链接:https://codeforces.com/contest/1382 A. Common Subsequence 题意 给出两个数组,找出二者最短的公共子序列。 题解 最短即长为一。 代码 #include <bits/stdc++.h> using na 阅读全文