Competition Analysis and Problem Solutions - August 10, 2022
Score: 260 points | Rank: 3rd
T1: 100 points
T2: 100 points
T3: 60 points
T4: 0 points
Problem Solutiosn
T1 - Sequence Generaiton
Standard simulation problem. For each sequence iteration, count consecutive digits from the previous sequence.
#include <bits/stdc++.h>
using namespace std;
string sequence[30];
int main() {
int n;
...
Posted on Thu, 11 Jun 2026 17:00:42 +0000 by BigMonkey