| Task: | WA on Buzzwords |
| Sender: | banghalq |
| Submission time: | 2025-11-24 17:05:16 +0200 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.07 s | details |
Code
import random
import string
A, B = [int(x) for x in input().split()]
size = 5
tab_str = []
for i in range(1000//6):
str_test = ''.join(random.choices(string.ascii_uppercase, k=size))
tab_str.append(str_test)
tab_str.append(' ')
tab_str.pop()
print(''.join(random.choices(string.ascii_uppercase, k=size)))
print(1)
print(''.join(random.choices(string.ascii_uppercase, k=size)))Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 2 |
| correct output |
|---|
| fumaarihappo on orgaaninen yhd... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 4, in <module>
A, B = [int(x) for x in input().split()]
ValueError: not enough values to unpack (expected 2, got 1)