CSES - Datatähti 2019 alku - Results
Submission details
Task:Ruudukko
Sender:kaurip
Submission time:2018-10-14 20:11:34 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.06 s1details
#30.06 s1details
#40.05 s1details
#50.05 s1details
#60.06 s1details
#70.07 s1details
#80.06 s1details
#90.05 s1details
#100.06 s1details
#110.06 s2details
#120.06 s2details
#130.06 s2details
#140.06 s2details
#150.06 s2details
#160.06 s2details
#170.06 s2details
#180.06 s2details
#190.07 s2details
#200.06 s2details
#210.06 s3details
#220.05 s3details
#230.04 s3details
#240.05 s3details
#250.06 s3details
#260.07 s3details
#270.06 s3details
#280.06 s3details
#290.06 s3details
#300.04 s3details

Code

import re

expr = u".*(n|i|s|a|o|e|u|ä|ö|x|-)$"
namea = "a.txt"
nameb = "b.txt"

matchesa = 0
matchesb = 0
n = 0

dic = {}
adic = {}

#A
f = open(namea,"r", encoding="UTF-8")
for line in f.readlines():
    # if line[-3] in dic:
    #     dic[line[-3]] += 1
    # else:
    #     dic[line[-3]] = 0
    # if line[1] in adic:
    #     adic[line[1]] += 1
    # else:
    #     adic[line[1]] = 0

    n += 1
    if re.match(expr, line, re.UNICODE):
        matchesa += 1
    else:
        print(line[:-1], end=", ")
f.close

#B
f = open(nameb,"r", encoding="UTF-8")
for line in f.readlines():
    if re.match(expr, line, re.UNICODE):
        matchesb += 1
f.close

r = (matchesa+n-matchesb)/(2*n)

print("a: {}".format(matchesa))
print("b: {}".format(matchesb))
print("r: {}".format(r))
print("n: {}".format(n))

# endletters = list(dic.items()).sort(key = lambda k : k[1])
# # print(endletters)
# print(dic)
# print(adic)

newf = open("newregex{}.text".format(format(r,".3f")),"w+", encoding = "utf-8")
newf.write(expr.replace("$",""))
newf.close()

Test details

Test 1

Group: 1

Verdict:

input
2
..
..

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 2

Group: 1

Verdict:

input
2
..
A.

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 3

Group: 1

Verdict:

input
2
B.
.A

correct output
0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 4

Group: 1

Verdict:

input
3
...
...
...

correct output
12

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 5

Group: 1

Verdict:

input
4
....
....
....
....

correct output
216

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 6

Group: 1

Verdict:

input
5
.....
.....
.....
.....
...

correct output
5280

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 7

Group: 1

Verdict:

input
5
....A
.....
.....
.....
...

correct output
264

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 8

Group: 1

Verdict:

input
5
B....
.....
.....
.A.B.
...

correct output
22

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 9

Group: 1

Verdict:

input
5
B.A..
....A
.....
A.B..
...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 10

Group: 1

Verdict:

input
5
A.B..
BA...
.B.A.
...BA
...

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 11

Group: 2

Verdict:

input
10
..........
..........
..........
..........
...

correct output
306442892

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 12

Group: 2

Verdict:

input
50
.................................

correct output
694861480

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 13

Group: 2

Verdict:

input
111
.................................

correct output
555319110

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 14

Group: 2

Verdict:

input
222
.................................

correct output
108372237

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 15

Group: 2

Verdict:

input
333
.................................

correct output
259107857

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 16

Group: 2

Verdict:

input
444
.................................

correct output
19906314

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 17

Group: 2

Verdict:

input
497
.................................

correct output
224313667

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 18

Group: 2

Verdict:

input
498
.................................

correct output
929574601

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 19

Group: 2

Verdict:

input
499
.................................

correct output
600226043

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 20

Group: 2

Verdict:

input
500
.................................

correct output
198353194

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 21

Group: 3

Verdict:

input
499
.................................

correct output
840243733

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 22

Group: 3

Verdict:

input
499
........................A........

correct output
4146290

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 23

Group: 3

Verdict:

input
499
B.........A......................

correct output
173518884

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 24

Group: 3

Verdict:

input
499
...A....B........................

correct output
20044800

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 25

Group: 3

Verdict:

input
499
AB...............................

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 26

Group: 3

Verdict:

input
500
.................................

correct output
121064146

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 27

Group: 3

Verdict:

input
500
.................................

correct output
848435259

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 28

Group: 3

Verdict:

input
500
.....B........A..................

correct output
296240911

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 29

Group: 3

Verdict:

input
500
.A......B........................

correct output
2196

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'

Test 30

Group: 3

Verdict:

input
500
...AB............................

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 15, in <module>
    f = open(namea,"r", encoding="UTF-8")
FileNotFoundError: [Errno 2] No such file or directory: 'a.txt'