摘要:
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 模拟 代码实现 阅读全文
摘要:
A. A Healthy Breakfast 模拟 代码实现 s = input() if s.index('R') < s.index('M'): print('Yes') else: print('No') B. Vertical Reading 模拟 代码实现 #include <bits/s 阅读全文
摘要:
A. Count Takahashi 模拟 代码实现 n = int(input()) ans = 0 for i in range(n): s = input() if s == 'Takahashi': ans += 1 print(ans) B. Couples 统计有多少个数对 \((i, 阅读全文
摘要:
A. Welcome to AtCoder Land 模拟 B. Ticket Counter 模拟 代码实现 #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; 阅读全文
摘要:
A. Sanitize Hands 模拟 代码实现 #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; int main() { int n, m; cin >> 阅读全文