wslcccc
wslcccc
全部文章
分类
归档
标签
去牛客网
登录
/
注册
wslcccc的博客
全部文章
(共28篇)
题解 | #特殊乘法#
while True: try: a,b=input().strip().split() sum=0 for i in range(len(a)): for j in range(len(b)): ...
2024-03-16
0
156
题解 | #数制转换#
list_num=['A','B','C','D','E','F'] while True: try: list1=list(input().strip().split()) a,n,b=int(list1[0]),str(list1[1]),int(list...
2024-03-15
0
192
题解 | #又一版 A+B#
while True: try: m,A,B=map(int,input().strip().split()) if m!=0: C=A+B if C==0: print(0) ...
2024-03-15
0
146
题解 | #进制转换#
while True: try: num=int(input()) list1=[] if num==0: print(num) else: while num>0: ...
2024-03-14
0
156
题解 | #进制转换2#
list1=['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'] while True: try: M,N=map(i...
2024-03-14
0
165
题解 | #进制转换#
list1 = ["A", "B", "C", "D", "E", "F"] while True: try: tdata = input() ...
2024-03-14
0
155
题解 | #二进制数#
while True: try: a=int(input()) list1=[] while a>0: list1.append(a%2) a//=2 list1.rever...
2024-03-14
0
163
题解 | #八进制#
while True: try: a=int(input()) list1=[] while a>0: list1.append(a%8) a//=8 list1.rever...
2024-03-14
0
157
首页
上一页
1
2
3
下一页
末页