python编程-洛谷系列
python编程之洛谷实战
全栈工程狮
这个作者很懒,什么都没留下…
展开
-
每天一道python编程之-洛谷P1000
a=""" ******** ************ ####....#. #..###.....##.... ###.......###### ### ### .........原创 2020-02-20 13:01:52 · 627 阅读 · 0 评论 -
每天一道python编程-洛谷P1001
s=input().split()print(int(s[0]) + int(s[1]))这里问题的关键在于如何接收输入用空格分隔的两个整数解决方法为input().split()函数,具体如下:https://www.runoob.com/python/att-string-split.html...原创 2020-02-20 16:42:36 · 815 阅读 · 0 评论 -
每天一道python编程-洛谷P1008
首先是之前用c语言写过的一个版本用到了乘1002003的方法:#include <bits/stdc++.h>using namespace std;int main(){ long long x; int i,t=0,b,c,m=0,j; bool cf=false; int a[9]={0}; for(i=123;i<=329;i++) { x...原创 2020-02-21 14:51:46 · 398 阅读 · 0 评论 -
每天一道python编程-洛谷P1009
这道题求阶乘之和,考察精度,但是python自带高精度所以写起来几乎没有难度,是一道水题n=input()n=int(n)s=0for i in range(1,n+1): m=1 for j in range(2,i+1): m=m*j s += mprint(s)...原创 2020-02-21 15:10:04 · 370 阅读 · 0 评论 -
每天一道python编程-洛谷P1003
u1s1,虽然学过C++的同学都说python简单,但是真正写起来题才发现自己可能过于自信了,鉴于python里面用list取代了数组,但是多维数组的实现就很麻烦了,,,,,况且python的输入input函数相比于C++的cin也不知道复杂了多少,光是循环输入数组数据就令我头疼了好久。。。。。卡在这道题上有两天了,实在没什么进展还很烦躁,最后不得不求助了大师兄才得到了ac代码,现在就来好好的...原创 2020-02-25 18:34:56 · 745 阅读 · 0 评论