| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128113 | 江屹山 | 统计硬币 | Python3 | Wrong Answer | 399 MS | 3764 KB | 246 | 2025-08-02 13:36:40 |
T=int(input()) for i in range(T): a,b=input().split() a=int(a) b=int(b) c=0 for x in range(0,a+1): for y in range(0,a+1): z=3-x-y if x*1+y*2+z*5==b: c=c+1 print(c)
------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-----
0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0