Submission #1434727
Source Code Expand
# -*- coding: utf-8 -*-
import re
a, b = map(int, re.split('\s', raw_input()))
if (a % 3 == 0) or (b % 3 == 0) or ((a+b) % 3 == 0):
print "Possible"
else:
print "Impossible"
Submission Info
| Submission Time | |
|---|---|
| Task | A - Sharing Cookies |
| User | kato_coffee |
| Language | Python (2.7.6) |
| Score | 100 |
| Code Size | 203 Byte |
| Status | AC |
| Exec Time | 10 ms |
| Memory | 2568 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 00_example_01.txt, 00_example_02.txt |
| All | 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00_example_01.txt | AC | 10 ms | 2568 KiB |
| 00_example_02.txt | AC | 10 ms | 2568 KiB |
| 01.txt | AC | 10 ms | 2568 KiB |
| 02.txt | AC | 10 ms | 2568 KiB |
| 03.txt | AC | 10 ms | 2568 KiB |
| 04.txt | AC | 10 ms | 2568 KiB |
| 05.txt | AC | 10 ms | 2568 KiB |
| 06.txt | AC | 10 ms | 2568 KiB |
| 07.txt | AC | 10 ms | 2568 KiB |