Submission #26187530
Source Code Expand
a, b, c = map(int, input().split())
while c <= b:
if c >= a:
print(c)
break
c += c
if c > b:
print(-1)
Submission Info
| Submission Time | |
|---|---|
| Task | A - Find Multiple |
| User | takedarts |
| Language | PyPy3 (7.3.0) |
| Score | 100 |
| Code Size | 128 Byte |
| Status | AC |
| Exec Time | 75 ms |
| Memory | 61732 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | example0.txt, example1.txt |
| All | 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, example0.txt, example1.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 000.txt | AC | 75 ms | 61544 KiB |
| 001.txt | AC | 49 ms | 61516 KiB |
| 002.txt | AC | 52 ms | 61408 KiB |
| 003.txt | AC | 48 ms | 61732 KiB |
| 004.txt | AC | 49 ms | 61536 KiB |
| 005.txt | AC | 44 ms | 61732 KiB |
| 006.txt | AC | 46 ms | 61672 KiB |
| 007.txt | AC | 55 ms | 61720 KiB |
| example0.txt | AC | 44 ms | 61588 KiB |
| example1.txt | AC | 50 ms | 61568 KiB |