Home
Blog
What’s New
Life Hacks
Entertainment
Hollywood
Bollywood
Gaming
News
Reviews
Movies
Others
Game
About Us
Contact Us
Search
E-Blogarithm
Home
Blog
What’s New
Life Hacks
Entertainment
Hollywood
Bollywood
Gaming
News
Reviews
Movies
Others
Game
About Us
Contact Us
Friday, September 19, 2025
Home
Blog
What’s New
Life Hacks
Entertainment
Hollywood
Bollywood
Gaming
News
Reviews
Movies
Others
Game
About Us
Contact Us
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
906 animes navigated
Aussie Climate Activists are Still Brutalising the Kids
Aussie Climate Activists and the Impact on Children's Mental Health The Australian climate change debate...
Hong Kong-Based IP Management Company Medialink Group Expands Into Japan With New Subsidiary Launch (EXCLUSIVE)
Hong Kong's Medialink Group Expands its Reach into Japan Hong Kong-based intellectual property (IP) management...
XRP Bearish Signal: Whales Offload $486 Million In Asset
XRP Bearish Signal: Whales Offload $486 Million in Asset The cryptocurrency market is known for...
Faraday Future Founder and Co-CEO YT Jia Shares Weekly Investor Update: FF Officially Started the Spinoff Plan for the Crypto Flywheel, a Second Independently...
Faraday Future Spins Off Crypto Venture: CXC10 on the Horizon Faraday Future, the electric vehicle...
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
Codeforces Round #384 (Div....
C/C++
December 17, 2016
#include<stdio.h> int main(){ long x; scanf("%ld",&x); if(x==1) printf("-1"); else printf("%ld %ld %ld",x,x+1,x*(x+1)); return 0; }
Read more
Codeforces Round #384 (Div....
C/C++
December 17, 2016
long long k; main() { scanf("%d%lld",&k,&k); printf("%dn",1+__builtin_ctzll(k)); }
Read more
Codeforces Round #384 (Div....
C/C++
December 17, 2016
#include<stdio.h> int main() { int i,j,n,a,b; char s; scanf("%d%d%d",&n,&a,&b); scanf("%s",s); if(s==s) { printf("0"); } else printf("1"); return 0; }
Read more
Codeforces Round #383 (Div....
C/C++
December 17, 2016
#include <stdio.h> #include <iostream> #include <algorithm> #include <memory.h> #include <string.h> #define rank _ran using...
Read more