回答編集履歴
2
edit
answer
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
A = int(input())
|
8
8
|
n_arr = {}
|
9
9
|
for i in range(1, A+1):
|
10
|
-
n_arr[i] = ['
|
10
|
+
n_arr[i] = ['dummy'] + list(map(int,input().split()))
|
11
11
|
B = int(input())
|
12
12
|
c_arr = {}
|
13
13
|
for l in range(1, B+1):
|
1
edit
answer
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
B = int(input())
|
12
12
|
c_arr = {}
|
13
13
|
for l in range(1, B+1):
|
14
|
-
c_arr[l] = ['
|
14
|
+
c_arr[l] = ['dummy'] + list(map(int,input().split()))
|
15
15
|
|
16
16
|
print(*c_arr[1][1:]) # 1 6
|
17
17
|
print(c_arr[1][1]) # 1
|