質問編集履歴

3

バッククォートを追加しました。

2020/08/23 02:44

投稿

kei.a
kei.a

スコア1

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  ### 該当のソースコード
20
20
 
21
-
21
+ ```
22
22
 
23
23
  N = int(input())
24
24
 
@@ -37,3 +37,5 @@
37
37
  s, g = list(map(int,input().split(' ')))
38
38
 
39
39
  print(S[g+1] - S[s])
40
+
41
+ ```

2

余分な改行を消しました。

2020/08/23 02:44

投稿

kei.a
kei.a

スコア1

test CHANGED
File without changes
test CHANGED
@@ -22,34 +22,18 @@
22
22
 
23
23
  N = int(input())
24
24
 
25
-
26
-
27
25
  line = tuple(map(int,input().split(' ')))
28
-
29
-
30
26
 
31
27
  S = [0]
32
28
 
33
-
34
-
35
29
  for i in range(0, N):
36
-
37
-
38
30
 
39
31
  S.append(S[i] + line[i])
40
32
 
41
-
42
-
43
33
  question = int(input())
44
-
45
-
46
34
 
47
35
  for i in range(question):
48
36
 
49
-
50
-
51
37
  s, g = list(map(int,input().split(' ')))
52
38
 
53
-
54
-
55
39
  print(S[g+1] - S[s])

1

バッククォートを削除しました。

2020/08/23 02:38

投稿

kei.a
kei.a

スコア1

test CHANGED
File without changes
test CHANGED
@@ -17,10 +17,6 @@
17
17
 
18
18
 
19
19
  ### 該当のソースコード
20
-
21
-
22
-
23
- ``Python
24
20
 
25
21
 
26
22
 
@@ -57,7 +53,3 @@
57
53
 
58
54
 
59
55
  print(S[g+1] - S[s])
60
-
61
-
62
-
63
- ```