Kurenai.Dokukawa
Kurenai.Dokukawa
全部文章
题解
归档
标签
去牛客网
登录
/
注册
神の博客
一个半路出家的小白
全部文章
/ 题解
(共25篇)
Python3 题解 | #KiKi算期末成绩#
#一行题解# // 事实上所给测试用例并不需要使用格式化输出即可自动输出一位小数 print(f"{sum(map(lambda x, y: x*y, map(int, input().split()), [0.2, 0.1, 0.2, 0.5])):.1f}")
Python3
2022-02-22
1
498
Python3 题解 | #小乐乐改数字#
#一行题解# print(int("".join("0" if int(i) % 2 == 0 else "1" for i in input())))
Python3
2022-02-22
1
495
Python3 题解 | #小乐乐与欧几里得#
#python3题解# def getInnerNum(a, b): return getInnerNum(b, a % b) if b else a def getOuterNum(a, b, innerNum): return a // innerNum * b x, y = m...
Python3
2022-02-22
0
305
Python3 题解 | #小乐乐定闹钟#
#python3题解# startTime, length = input().split() length = int(length) hour, minute = map(int, startTime.split(":")) minute = minute + length % 60 if mi...
Python3
2022-02-22
0
275
Python3 题解 | #牛牛的水杯#
#python3题解# import math h, r = map(int, input().split()) print(math.ceil(10000/(3.14*h*(r**2))))
Python3
2022-02-22
0
481
Python3 题解 | #KiKi和酸奶#
#python3题解# #趣味题干# from math import ceil a, b, c = map(int, input().split()) print(a - ceil(c/b)) KiKi爱喝酸奶 × KiKi love to DANCE √
Python3
2022-02-21
2
468
Python3 题解 | #统计成绩#
#python3题解# lis = [] while 1: try: lis.append(input()) except: break score = list(map(float, lis[1].split())) print(f"{max(sco...
Python3
2022-02-21
1
389
Python3 题解 | #你能活多少秒#
#一行题解# #趣味题干# print(int(input())*31560000) 你能活多少秒 no 你活了多少秒 yes Omae wa mou shindeiru yes!yes!yes!
Python3
2022-02-21
0
390
Python3 题解 | #2的n次方计算#
#一行题解# #性能测试# #抽象化# // 这是一个不懂二进制的人也能很简单看懂的题解,不过这个题解性能不高 // 本方法计算(2*310) 100万次计时557.968ms print(2**int(input())) // 这是一个性能更高的题解,这个题解的说明将在下方写出 // 本方法计算...
Python3
2022-02-21
9
2107
Python3 题解 | #开学?#
#一行题解# print(str(sum(int(x) for x in input().split()) % 7).replace("0", "7"))
Python3
2022-02-21
0
341
首页
上一页
1
2
3
下一页
末页