Home
Blog
What’s New
Life Hacks
Entertainment
Hollywood
Bollywood
Gaming
News
Reviews
Movies
Others
Game
About Us
Contact Us
Privacy Policy
Search
E-Blogarithm
Home
Blog
What’s New
Life Hacks
Entertainment
Hollywood
Bollywood
Gaming
News
Reviews
Movies
Others
Game
About Us
Contact Us
Privacy Policy
Friday, February 27, 2026
Home
Blog
What’s New
Life Hacks
Entertainment
Hollywood
Bollywood
Gaming
News
Reviews
Movies
Others
Game
About Us
Contact Us
Privacy Policy
Sign in
Welcome! Log into your account
your username
your password
Forgot your password? Get help
Create an account
Create an account
Welcome! Register for an account
your email
your username
A password will be e-mailed to you.
Password recovery
Recover your password
your email
A password will be e-mailed to you.
Sponsors
Admin
1054 animes navigated
Workday’s stock slumps again on weak guidance and AI disruption fears
Workday Shares Plunge as Future Outlook Dims Amid AI Concerns Workday Inc. (WDAY), a long-standing...
Milan Cortina Olympics Attracts 23.5 Million Viewers Across NBCUniversal and Versant Outlets, Best Winter Games Since 2014
Milan Cortina Olympics Sees Record-Breaking Viewership and PerformanceThe Milan Cortina Winter Olympics have officially...
New York City’s Last Striking Nurses Approve New Contract
New York City Nurses Reach Historic Agreement Ending Major StrikeIn a significant development for...
Predator: Bloodshed #1 Preview: Alien Invader Crashes Fight Club
The Hunt Intensifies: Predator: Bloodshed #1 Takes the Yautja to an Underground Arena Marvel Comics...
Codeforces Round #386 (Div....
C/C++
January 6, 2017
Codeforces Round #386 (Div. 2), problem: (F) Music in...
Read more
Codeforces Round #386 (Div....
C/C++
January 6, 2017
Codeforces Round #386 (Div. 2), problem: (E) Numbers Exchange...
Read more
Codeforces Round #386 (Div....
C/C++
January 6, 2017
Codeforces Round #386 (Div. 2), problem: (D) Green and...
Read more
Codeforces Round #386 (Div....
C/C++
January 6, 2017
Codeforces Round #386 (Div. 2), problem: (C) Tram Solution...
Read more
Codeforces Round #386 (Div....
Blog
January 6, 2017
Codeforces Round #386 (Div. 2), problem: (B) Decoding Solution...
Read more
Codeforces Round #386 (Div....
C/C++
January 6, 2017
Codeforces Round #386 (Div. 2), problem: (A) Compote Solution...
Read more
Codeforces Round #385 (Div....
C/C++
December 18, 2016
#include<bits/stdc++.h> using namespace std; const int maxn=16,INF=0x3f3f3f3f; char type; int R,B; char readchar() { for(;;)...
Read more
Codeforces Round #385 (Div....
C/C++
December 18, 2016
#include <limits.h> #include <stdio.h> #define N 1000 void query(int *ww, int *aa, int...
Read more
Codeforces Round #385 (Div....
C/C++
December 18, 2016
#include <stdio.h> #include <string.h> int c, p, sz, gov; int find_parent(int n)...
Read more
Codeforces Round #385 (Div....
C/C++
December 18, 2016
#include <limits.h> #include <stdio.h> int main() { int i, j, n, m,...
Read more
Codeforces Round #385 (Div....
C/C++
December 18, 2016
#include<stdio.h> #include<string.h> void cycle(char s,int len) { char temp=s; int i; for(i=len-1;i>0;i--) { s=s; } s=temp; } int main(){ char s,orig; int len,count=0; scanf("%s",s); len=strlen(s); strcpy(orig,s); do { cycle(s,len); count++; } while(strcmp(orig,s)); printf("%dn",count); return...
Read more
Codeforces Round #384 (Div....
C/C++
December 17, 2016
#include <stdio.h> #include <string.h> #define MAX(X,Y) ((X)>(Y) ? (X) : (Y)) #define...
Read more