StellarSpecter's blog

By StellarSpecter, history, 3 hours ago, In English

Today I couldn't solve a single problem in the contest, My rating will continue to drop.

Makes me want to end this journey here.

Thanks codeforces and everyone, I think I will only do leetcode from now on.

PS: Don't hate on me for this goodbye memory blog.

Tags bye
  • Vote: I like it
  • -21
  • Vote: I do not like it

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

Great!

»
3 hours ago, # |
  Vote: I like it +1 Vote: I do not like it

Why did you attempt G2 before attempting A today ?

»
3 hours ago, # |
Rev. 2   Vote: I like it +4 Vote: I do not like it

why are you heartbroken when you didnt write your own code

check his submissions for g :((

»
3 hours ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

why didnt you try A? It is probably the easiest question i have seen on codeforces.

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

Before starting with competitive programming, you should have to make your DSA strong as much as possible. You should learn different algorithms and also have idea about time and space complexity. Absolutely you should have to solve the easy and medium problems from other coding platforms, then u should come here. At beginning, I too jumped into cp without having basic idea about time complexity.

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

Now other ppl's +ve delta would be lesser :(

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

9q3418

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

join ukika clan

»
3 hours ago, # |
Rev. 3   Vote: I like it 0 Vote: I do not like it

How come you solved A and C for pinely round Div1+Div2, but solved no problems here? At pinely round, I solved just A, yet solved ABCE for today's contest. Did u copy code or smth?

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

I refuse to believe that anyone that registers for this site can't solve A in today's contest.

»
3 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

you said the same thing 2 months back in this blog, see where you are now

»
2 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

start playing chess, i will make you lgm in chess

»
36 minutes ago, # |
  Vote: I like it 0 Vote: I do not like it
#include <iostream>
using namespace std;

void solve() {
    int n; 
    cin>>n;
    int ans = 0;
    for(int i=0;i<n;i++){
        ans += i;
    }
    cout<<ans<<endl;
}

int main() {
    int t;
    cin >> t;
    while (t--) solve();
}

whats wrong with my code of problem A ?