質問編集履歴

1

コードを移しました。

2020/07/23 07:26

投稿

zero1132
zero1132

スコア4

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- pythonを使ったプログラミングの問題について質問です。
1
+ ```Python
2
2
 
3
3
  [解答]
4
4
 
@@ -12,35 +12,35 @@
12
12
 
13
13
  for i in range(n):
14
14
 
15
- / x, y = input().split()
15
+  x, y = input().split()
16
16
 
17
17
 
18
18
 
19
- / e = False
19
+ e = False
20
20
 
21
21
 
22
22
 
23
- / for k,v in a.items():
23
+ for k,v in a.items():
24
24
 
25
- / if k == x:
25
+ if k == x:
26
26
 
27
- / e = True
27
+ e = True
28
28
 
29
29
 
30
30
 
31
- / if e:
31
+ if e:
32
32
 
33
- / a[x] = a[x] + int(y)
33
+ a[x] = a[x] + int(y)
34
34
 
35
- / # 同じ時は、数をたす
35
+ # 同じ時は、数をたす
36
36
 
37
- / else:
37
+ else:
38
38
 
39
- / a[x] = int(y)
39
+ a[x] = int(y)
40
40
 
41
- / # 同じではなければ、足さない
41
+ # 同じではなければ、足さない
42
42
 
43
- / print(a)
43
+ print(a)
44
44
 
45
45
 
46
46
 
@@ -56,15 +56,17 @@
56
56
 
57
57
  for i in range(n):
58
58
 
59
- / x, y = input().split()
59
+ x, y = input().split()
60
60
 
61
61
 
62
62
 
63
- / a[x] = int(y)
63
+ a[x] = int(y)
64
64
 
65
65
 
66
66
 
67
- / print(a)
67
+ print(a)
68
+
69
+ ```pythonを使ったプログラミングの問題について質問です。
68
70
 
69
71
 
70
72