CSES - Putka Open 2015 – 2/6 - Results
Submission details
Task:Pussit
Sender:
Submission time:2015-08-16 21:47:21 +0300
Language:Python2
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.05 s1details
#20.05 s2details
#30.06 s3details

Code

from math import ceil
# just testing... wont work
# n=pussit, m=pallot, k=varmasti n:monta
tests=[]
for _ in range(int(raw_input())):
    tests.append([int(q) for q in raw_input().split()])
for t in tests:
    n,m,k=t
    if m/n >= k:
        print k
        continue
    if m==k:
        print m+n-1
        continue
    if k==1:
        print n-m+1
        continue
    raise NotImplemented

Test details

Test 1

Group: 1

Verdict:

input
1000
11 16 2
5 16 15
2 14 14
9 11 1
...

correct output
2
15
14
1
1
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    raise NotImplemented
TypeError: exceptions must be old-style classes or derived from BaseException, not NotImplementedType

Test 2

Group: 2

Verdict:

input
1000
1436 3023 1378
4419 4559 3881
115 4220 1440
3556 3152 1653
...

correct output
1378
3881
1440
2057
5312
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    raise NotImplemented
TypeError: exceptions must be old-style classes or derived from BaseException, not NotImplementedType

Test 3

Group: 3

Verdict:

input
1000
337723917 939459738 544279388
233319567 486500388 164139442
722536320 995223331 969580610
274242146 994174001 844564432
...

correct output
544279388
164139442
1194505265
870263078
547470112
...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 18, in <module>
    raise NotImplemented
TypeError: exceptions must be old-style classes or derived from BaseException, not NotImplementedType