Submission #2404984
Source Code Expand
a,b,c,x = Array.new(4){|i| gets.chomp.to_i}
count = 0
for i in 0..a
for j in 0..b do
for k in 0..c do
d = 500 * i + 100 * j + 50 * k
count += 1 if d == x
end
end
end
puts count
Submission Info
| Submission Time | |
|---|---|
| Task | B - Coins |
| User | attribute_k |
| Language | Ruby (2.3.3) |
| Score | 200 |
| Code Size | 238 Byte |
| Status | AC |
| Exec Time | 26 ms |
| Memory | 1788 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 200 / 200 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | sample01.txt, sample02.txt, sample03.txt |
| All | 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, sample01.txt, sample02.txt, sample03.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 01.txt | AC | 13 ms | 1788 KiB |
| 02.txt | AC | 7 ms | 1788 KiB |
| 03.txt | AC | 7 ms | 1788 KiB |
| 04.txt | AC | 26 ms | 1788 KiB |
| 05.txt | AC | 7 ms | 1788 KiB |
| 06.txt | AC | 11 ms | 1788 KiB |
| 07.txt | AC | 25 ms | 1788 KiB |
| 08.txt | AC | 7 ms | 1788 KiB |
| 09.txt | AC | 7 ms | 1788 KiB |
| 10.txt | AC | 7 ms | 1788 KiB |
| sample01.txt | AC | 7 ms | 1788 KiB |
| sample02.txt | AC | 7 ms | 1788 KiB |
| sample03.txt | AC | 16 ms | 1788 KiB |