QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#747609 | #9739. 盒子 | nekoyellow | WA | 14ms | 10744kb | Python3 | 263b | 2024-11-14 17:40:25 | 2024-11-14 17:40:25 |
Judging History
answer
z0, h, x0, y0, x1, y1 = map(int, input().split())
z1 = z0+h
for _ in range(int(input())):
x, y, z = map(int, input().split())
if x0 <= x and x <= x1 and y0 <= y and y <= y1 and z0 <= z and z <= z1:
print("YES")
else:
print("NO")
详细
Test #1:
score: 100
Accepted
time: 8ms
memory: 10744kb
input:
1 1 -1 -1 1 1 3 -1 -1 1 0 0 2 1 2 2
output:
YES YES NO
result:
ok 3 token(s): yes count is 2, no count is 1
Test #2:
score: 0
Accepted
time: 14ms
memory: 10576kb
input:
0 0 0 0 0 0 1 0 0 0
output:
YES
result:
ok YES
Test #3:
score: 0
Accepted
time: 13ms
memory: 10708kb
input:
350432 492023 -396022 -414507 -384948 -709370 1000 -130226 -670854 277087 566180 93150 527328 -204228 -72535 242125 -614762 564337 -801184 223424 -916504 -284025 749863 555219 232927 -127805 10830 871265 510696 -444465 52713 313445 -731187 -723316 -917838 537750 294727 532132 -19501 346654 -632699 -...
output:
NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO ...
result:
ok 1000 token(s): yes count is 0, no count is 1000
Test #4:
score: -100
Wrong Answer
time: 11ms
memory: 10528kb
input:
228503 520839 -998939 648838 301020 -634344 1000 -51454 763171 -95843 -188171 -950717 -549267 -820616 222672 830557 294338 -499633 -837648 641515 624958 954660 958085 -348021 600965 -342912 7553 357975 882334 976349 300816 -773525 667743 -455881 -281685 -62054 -906946 437055 985148 92827 -556692 -76...
output:
NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO NO ...
result:
wrong answer expected YES, found NO [7th token]