#27431: python RE


abc0989902545@gmail.com (Pei-Wen Lin)

學校 : 不指定學校
編號 : 168349
來源 : [140.116.245.251]
最後登入時間 :
2021-10-19 10:38:31
d790. 00729 - The Hamming Distance Problem -- UVa729 | From: [140.116.245.251] | 發表日期 : 2021-10-04 14:39

from itertools import permutations 

x = int(input())

for i in range(x):

    num0, num1 = map(int, input().split(' '))

    Str = "0" * (int(num0) - int(num1)) + "1" * int(num1)

    res = permutations(Str)

    for k in sorted(set(res)):

        print("".join(str(j) for j in k))

在VScode output是正確的 但丟進來測試就會噴以下錯誤

有在stackoverflow找到一樣的錯誤 看到有解法是先轉float再轉int

但因為num0和num1讀進來我就把他map成int 所以這個解法不太適用我的問題

想問問有人知道哪邊錯了嗎?

 
ZeroJudge Forum