| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128112 | 6倪葭轩 | 统计硬币 | Python3 | Wrong Answer | 49 MS | 3764 KB | 369 | 2025-08-02 13:25:02 |
n=int(input()) for x in range(n): coin,amount=input().split() coin,amount=int=(coin),int=(amount) res=0 for one in range(coin): for two in range(coin): for five in range(coin): five=coin-one-two if one+two+five==coin and one*1+ two*2 +five*5==amount: res +=1 print(res)
------Input------
20 5 10 8 20 3 6 2 4 10 26 11 27 1 1 1 2 2 2 1 5 5 25 100 250 1000 3000 26 120 9 30 12 27 7 25 27 54 32 100 4 13
------Answer-----
2 2 1 1 3 3 1 1 1 1 1 21 167 1 2 3 1 7 6 1
------Your output-----