CARLJOSEPHLEE
CARLJOSEPHLEE
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
CARLJOSEPHLEE的博客
全部文章
(共216篇)
题解 | 牛牛学加法
print(sum([int(i) for i in input().split()]))
2025-07-15
0
22
题解 | 复读机
print(input()) print(input()) print(round(float(input()),1)) print(input()) print(input())
2025-07-15
0
27
题解 | 牛牛学说话之-字符串
print(input())
2025-07-15
0
26
题解 | 牛牛学说话之-浮点数
print(input())
2025-07-15
0
24
题解 | 牛牛学说话之-整数
print(input())
2025-07-15
0
25
题解 | Hello Nowcoder
print("Hello Nowcoder!")
2025-07-15
0
23
题解 | 九倍平方数
from sys import stdin,stdout read1 = stdin.read().split() ans = [] for index in range(int(read1[0])): n = [int(i) for i in read1[index+1]] k =...
2025-07-14
2
54
题解 | 变幻莫测
x,y = map(int,input().split()) if x==y: print(0) elif y==0: print(1) elif x==0: print(2) elif x+y==0: print(3) else: print(-1)
2025-07-13
1
39
题解 | 魔法棒
这样应该是性能拉满了 from sys import stdin,stdout input() stdout.write("\n".join(["No" if i in {"2", "3", "5",...
2025-07-13
1
42
题解 | 魔法棒
本蒟蒻只会打表 for _ in range(int(input())): print("Yes" if int(input()) not in {2,3,5,6,8,11,14} else "No")
2025-07-13
3
42
首页
上一页
9
10
11
12
13
14
15
16
17
18
下一页
末页