Task: | HIIT remains |
Sender: | oneofususespy |
Submission time: | 2024-09-28 13:17:38 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | details |
#2 | WRONG ANSWER | 0.02 s | details |
#3 | WRONG ANSWER | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
Code
from functools import cache @cache def hiit(s): if s == "": return (0, 0, 0, 0) last = s[-1] h, hi, hii, hiii = hiit(s[:-1]) if last == "H": return (h + 1, hi, hii, hiii) elif last == "I": return (h, hi + h, hii + hi, hiii) elif last == "T": return (h, hi, hii, hiii + hii) else: return (h, hi, hii, hiii) if __name__ == "__main__": s = input() print(hiit(s)[3])
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
100 IIITIIIHITHTHIIITIII HIHIIIIIIHIIITHIIIII ITTIIIITIIIIIIITIIIT IITHITITIHHIITTTIIII ... |
correct output |
---|
12 84 0 37 96 ... |
user output |
---|
0 |
Test 2
Verdict: WRONG ANSWER
input |
---|
100 TIIHHITTITITIHTHIIIITHIHHIIHTI... |
correct output |
---|
606723862 621369559 655243897 550750615 717769300 ... |
user output |
---|
0 |
Test 3
Verdict: WRONG ANSWER
input |
---|
10 TTHTHHTIIIIIITHIIHIITITTITTIIH... |
correct output |
---|
64668032062669502 66159978956790306 65755072918424640 64408596558953628 65238005187079543 ... |
user output |
---|
0 |
Test 4
Verdict: WRONG ANSWER
input |
---|
3 HHHHHHHHHHHHHHHHHHHHHHHHHHHHHH... |
correct output |
---|
781234375000000000 4999750003 0 |
user output |
---|
0 |