Submission #24649702
Source Code Expand
a, b = map(int, input().split())
if 0 < a and b == 0:
print('Gold')
elif a == 0 and 0 < b:
print('Silver')
else:
print('Alloy')
Submission Info
| Submission Time | |
|---|---|
| Task | A - Alloy |
| User | cubesat |
| Language | Python (3.8.2) |
| Score | 100 |
| Code Size | 149 Byte |
| Status | AC |
| Exec Time | 25 ms |
| Memory | 9152 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | example0.txt, example1.txt, example2.txt, example3.txt |
| All | 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, example0.txt, example1.txt, example2.txt, example3.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 000.txt | AC | 20 ms | 8856 KiB |
| 001.txt | AC | 18 ms | 9012 KiB |
| 002.txt | AC | 20 ms | 9088 KiB |
| 003.txt | AC | 18 ms | 9148 KiB |
| 004.txt | AC | 18 ms | 9020 KiB |
| 005.txt | AC | 22 ms | 8852 KiB |
| 006.txt | AC | 19 ms | 9152 KiB |
| example0.txt | AC | 18 ms | 9020 KiB |
| example1.txt | AC | 25 ms | 8864 KiB |
| example2.txt | AC | 18 ms | 9088 KiB |
| example3.txt | AC | 19 ms | 9012 KiB |