| Task: | Karkit |
| Sender: | arde100 |
| Submission time: | 2021-10-08 11:18:07 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.02 s | details |
| #2 | RUNTIME ERROR | 0.02 s | details |
| #3 | RUNTIME ERROR | 0.02 s | details |
| #4 | RUNTIME ERROR | 0.02 s | details |
| #5 | RUNTIME ERROR | 0.02 s | details |
Code
# -*- coding: utf-8 -*-
"""
Created on Wed Oct 6 09:44:26 2021
@author: aaro.koskinen
"""
with open("result.txt", 'a') as file:
for rahat in range(1,101):
for a in range(1,101):
for b in range(1,101):
if a < b:
print(rahat,a,b,rahat//a)
file.write(f"{rahat}, {a}, {b}, {rahat//a}\n")
else:
print(rahat,a,b,rahat//b)
file.write(f"{rahat}, {a}, {b}, {rahat//b}\n")Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
with op...Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
with op...Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
with op...Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
with op...Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
with op...