牛客309622950号
牛客309622950号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客309622950号的博客
全部文章
/ 题解
(共5篇)
题解 | #合并表记录#
data = [] while True: try: n = input() d = {} while True: k,v = input().split(' ') if k in d.keys(...
Python3
2021-09-16
0
324
题解 | #合并表记录#
data = [] while True: try: n = input() d = {} while True: k,v = input().split(' ') if k in d.keys(...
Python3
2021-09-16
0
338
题解 | #质数因子#
data = [] while True: try: t = int(input()) data.append(t) except (EOFError, KeyboardInterrupt): break import math n ...
Python3
2021-09-16
0
446
题解 | #字符串分隔#
data = [] while True: try: t = input() data.append(t) except (EOFError, KeyboardInterrupt): break for i in data: ...
Python3
2021-09-16
31
3019
题解 | #明明的随机数#
data = [] while True: try: n = input() ta = [] for i in range(int(n)): ta.append(int(input())) uniq = ...
Python3
2021-09-16
58
9705