会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
你爱谈天我爱笑
博客园
首页
新随笔
联系
订阅
管理
2019年8月11日
python判断等差数列
摘要: import sys n = int(sys.stdin.readline().strip()) s = sys.stdin.readline() s = list(map(int, s.split(' '))) print(n) print(s) for i in range(len(s)-1): for j in range(i+1, len(s)): if s[i] >= s[j]: s[i
阅读全文
posted @ 2019-08-11 16:02 你爱谈天我爱笑
阅读(1465)
评论(0)
推荐(0)
编辑
公告