Anonymous_A
Anonymous_A
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Anonymous_A的博客
全部文章
(共4篇)
题解 | #24点运算#
def calculate(cards, target): # print(cards, target) global op_list if len(cards) == 1: if cards[0] == target: return ...
2023-09-13
0
269
题解 | #平均年龄#
import math import traceback while True: try: W, Y, x, N = input().strip().split() W, Y, N = list(map(int, [W, Y, N])) x =...
2023-03-31
0
309
题解 | #钓鱼比赛#
while True: try: n, m, x, y, t = list(map(int, input().strip().split())) matrix = [] prob_sum = 0.0 for i in range...
2023-03-27
0
405
题解 | #罪犯转移#
while True: try: line = input() if not line: break n, t, c = list(map(int, line.strip().split())) crim...
2023-03-27
0
312