| Task: | Merkkijonot |
| Sender: | AtskaFin |
| Submission time: | 2019-10-02 19:26:03 +0300 |
| Language: | Node.js |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.42 s | 1, 2, 3 | details |
| #2 | RUNTIME ERROR | 0.43 s | 2, 3 | details |
| #3 | RUNTIME ERROR | 0.42 s | 3 | details |
| #4 | RUNTIME ERROR | 0.43 s | 3 | details |
| #5 | RUNTIME ERROR | 0.43 s | 3 | details |
| #6 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
| #7 | RUNTIME ERROR | 0.42 s | 1, 2, 3 | details |
| #8 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
| #9 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
| #10 | RUNTIME ERROR | 0.43 s | 2, 3 | details |
| #11 | RUNTIME ERROR | 0.43 s | 2, 3 | details |
| #12 | RUNTIME ERROR | 0.42 s | 2, 3 | details |
| #13 | RUNTIME ERROR | 0.43 s | 2, 3 | details |
| #14 | RUNTIME ERROR | 0.43 s | 2, 3 | details |
| #15 | RUNTIME ERROR | 0.43 s | 3 | details |
| #16 | RUNTIME ERROR | 0.43 s | 3 | details |
| #17 | RUNTIME ERROR | 0.43 s | 3 | details |
| #18 | RUNTIME ERROR | 0.43 s | 3 | details |
| #19 | RUNTIME ERROR | 0.43 s | 3 | details |
| #20 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
| #21 | RUNTIME ERROR | 0.42 s | 1, 2, 3 | details |
| #22 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
| #23 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
| #24 | RUNTIME ERROR | 0.43 s | 1, 2, 3 | details |
Code
const readLine = require('readline')
let input, storage
input = [
[],[],[],[],[],[],[],[],[],[],
[],[],[],[],[],[],[],[],[],[],
[],[],[],[],[],[],[],[],[],[],
[],[],[],[],[],[],[],[],[],[],
[],[],[],[],[],[],[],[],[],[], []
]
const symbols = [
'A','B','C','D','E','F','G','H','I','J','K','L','M',
'N','O','P','Q','R','S','T','U','V','W','X','Y','Z'
]
const read = readLine.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
})
const work = str => {
storage = str.toLowerCase()
let answer = storage
let round = 0
while(true) {
if(storage.length === 0) break
answer = answer.replace(new RegExp(storage[0], 'g'), symbols[round])
storage = storage.replace(new RegExp(storage[0], 'g'), '')
round++
}
input[answer.length].push(answer)
}
const calc = difference => {
if(difference === 1) return 0
let answer = 1
for(let i = 2; i < difference; i++) {
answer += i
}
return answer
}
const counter = arr => {
let arrCopy = arr
let answer = 0
let len1, len2, round = 0
while(true) {
if(arrCopy.length === 0) break
len1 = arrCopy.length
arrCopy = arrCopy.filter(el => el !== arrCopy[0])
len2 = len1 - arrCopy.length
answer += calc(len2)
round++
}
return answer
}
const start = arr => {
let answer = 0
arr.forEach(el => answer += counter(el))
console.log(answer)
}
let count
let round = 0
let started = false
read.on('line', n => {
if(!started) {
count = Number(n)
started = true
} else inputs.push(n)
if(inputs.length === count) {
inputs.forEach(el => work(el))
start(input)
}
})Test details
Test 1
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 FFDISOVJLPIASANJRBHQXJVW HBGVRZFWOTAAVUPYKMKXAOBEYUE JKHXTPHUKTLTLNXMXMSYYFLF HCSZMXTZCUFHIHSTEWKHCFZRTXU ... |
| correct output |
|---|
| 20 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 2
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 AJEDROEDXRGDUSDAPZBXXQBPJ PDGCTAGCRTBCJICPFELRRMLFD TISAOTGMDKUCITIEFQVCSBZJYUUO FMASVJYFPMELSVLQWFZVLVMSPHYL ... |
| correct output |
|---|
| 2178556 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 3
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 RESKYADLVRSDCDXJVECAJCAP CZLIWDHKVNRJHZINHFBOQEPN LSTRSDTLADUIWXFQJSQPVRSPBCTZ QEMSZOQSSVBRNQTCLJQIGVQO ... |
| correct output |
|---|
| 404880850 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 4
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4999950000 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 5
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 IPI Q SPGV UNYE ... |
| correct output |
|---|
| 1041990627 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 6
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 A B C D ... |
| correct output |
|---|
| 190 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 7
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 1 A |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 8
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 A BB CCC DDDD ... |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 9
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 2 A A |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 10
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 SEKNHNRHSRFYIHSCDPGXPTGUSYBFKZ... |
| correct output |
|---|
| 20861 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 11
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 UGPWHWOWAREEIROZTRJGUCKDKTZJEO... |
| correct output |
|---|
| 22818 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 12
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 FFQQCBCINBDWIKHFPO SCJU DNHYPGIQNZS KNQCYRAXHHKORXMOVHL ... |
| correct output |
|---|
| 22268 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 13
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 QVWMSYPWXWBBXWCVEOUAVQLDWNBXZB... |
| correct output |
|---|
| 22589 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 14
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 JYORMNQAKXHNRBWGGSMWXWXMBKPBZU... |
| correct output |
|---|
| 20482 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 15
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 DCXXVIEYQAASZJYUUVYZUIJFGVBAYC... |
| correct output |
|---|
| 8925377 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 16
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 IJZHBIYNWQBDWNGZWVXJKXXWFVLPQX... |
| correct output |
|---|
| 8907840 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 17
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 GWUGLGQDAYGGJROIAKBMMICQMDUQQQ... |
| correct output |
|---|
| 8771809 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 18
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 SWVSVXURRSLCSHCPAKWESIPCNDKYLD... |
| correct output |
|---|
| 8704480 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 19
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 ZLSNSZBGIMCOLPDEAKVDAJCTMBNRLH... |
| correct output |
|---|
| 8672362 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 20
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 AAB D CDBAA D ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 21
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 A CDD AABBC DBCB ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 22
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 ACADD CDDCD DACA CCDCA ... |
| correct output |
|---|
| 17 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 23
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 DCDA BDBA CACBD BA ... |
| correct output |
|---|
| 7 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...Test 24
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| 20 DDA BBCDC DDD CCD ... |
| correct output |
|---|
| 14 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:77
if(inputs.length === count) {
^
ReferenceError: inputs is n...