import numpy as np
queue = int(input())
queue2 = queue * queue
list1 = []
for i in range(queue2):
a = int(input())
list1.append(a)
for i in range(queue2):
if list1[i] == 0:
for j in range(1,queue2 + 1):
c = list1.count(j)
if c == 0:
list1[i] = j
else:
pass
more = np.array(list1)
morequeue = more.reshape(queue,queue)
print(morequeue)
このコードを実行すると
Traceback (most recent call last):
File "Main.py", line 8, in <module>
a = int(input())
ValueError: invalid literal for int() with base 10: '6 1 8'
というエラーが出てきます。aに入力される数値はqueueが3である場合、?(半角スペース)?(半角スペース)?(半角スペース)のように与えられます。?は1からqueue + 1までの数です。
回答1件
あなたの回答
tips
プレビュー