摘要:
A. Jiro 分类讨论 代码实现 #include <bits/stdc++.h> using namespace std; int main() { char ab, ac, bc; cin >> ab >> ac >> bc; if (ab != ac) puts("A"); if (ab = 阅读全文
摘要:
A. Buy a Pen 模拟 代码实现 a = list(map(int, input().split())) c = input() a.pop(['Red', 'Green', 'Blue'].index(c)) print(min(a)) B. Right Triangle 一个角为直角等价 阅读全文
摘要:
A. Insert 模拟 代码实现 n, k, x = map(int, input().split()) a = list(map(int, input().split())) a.insert(k, x) print(*a) B. Intersection of Cuboids 模拟 代码实现 阅读全文