回答編集履歴

5

修正

2020/05/29 04:21

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  break
12
12
 
13
- if len(lst) == 0 or len(lst) >= 1 and lst[-1] != N:
13
+ if len(lst) == 0 or len(lst) >= 1 and lst[-1] != N ** 2:
14
14
 
15
15
  n = N ** 2
16
16
 

4

修正

2020/05/29 04:21

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,6 +1,6 @@
1
1
  ```Python
2
2
 
3
- lst = [0]
3
+ lst = []
4
4
 
5
5
  while True:
6
6
 
@@ -8,11 +8,13 @@
8
8
 
9
9
  if N < 0:
10
10
 
11
- brake
11
+ break
12
12
 
13
- if lst[-1] != N:
13
+ if len(lst) == 0 or len(lst) >= 1 and lst[-1] != N:
14
14
 
15
+ n = N ** 2
16
+
15
- lst.append(N ** 2)
17
+ lst.append(n)
16
18
 
17
19
  print(sum(lst))
18
20
 

3

修正

2020/05/29 03:52

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  while True:
6
6
 
7
- N = input('入力してください')
7
+ N = int(input('入力してください'))
8
8
 
9
9
  if N < 0:
10
10
 

2

編集

2020/05/29 03:05

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,6 +1,6 @@
1
1
  ```Python
2
2
 
3
- lst = []
3
+ lst = [0]
4
4
 
5
5
  while True:
6
6
 

1

編集

2020/05/29 03:01

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -16,4 +16,4 @@
16
16
 
17
17
  print(sum(lst))
18
18
 
19
- ```
19
+ ```sumっていうのはPythonの標準ライブラリの名前なので使わないでください。