Submission #9903590
Source Code Expand
# 変数a, b, cにTrueまたはFalseを代入してAtCoderと出力されるようにする
a = True
b = False
c = True
# ここから先は変更しないこと
if a:
print("At", end="") # end="" と書くと末尾改行がされなくなる
else:
print("Yo", end="")
if (not a) and b:
print("Bo", end="")
elif (not b) or c:
print("Co", end="")
if a and b and c:
print("foo!")
elif True and False:
print("yeah!")
elif (not a) or c:
print("der")
Submission Info
| Submission Time | |
|---|---|
| Task | EX7 - 1.07 |
| User | saba |
| Language | Python (3.4.3) |
| Score | 100 |
| Code Size | 500 Byte |
| Status | AC |
| Exec Time | 17 ms |
| Memory | 3064 KiB |
Judge Result
| Set Name | all | ||
|---|---|---|---|
| Score / Max Score | 100 / 100 | ||
| Status |
|
| Set Name | Test Cases |
|---|---|
| all | test01.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| test01.txt | AC | 17 ms | 3064 KiB |