Does CodeChef have any Code Of Conduct?

#include<stdio.h>
#include<conio.h>

int main() {
int length, breadth, area;

printf("\nEnter the Length of Rectangle : “);
scanf(”%d", &length);

printf("\nEnter the Breadth of Rectangle : “);
scanf(”%d", &breadth);

area = length * breadth;
printf("\nArea of Rectangle : %d", area);

return (0);
}

include

include

int main() {
int length, breadth, area;

printf("\nEnter the Length of Rectangle : “);
scanf(”%d", &length);

printf("\nEnter the Breadth of Rectangle : “);
scanf(”%d", &breadth);

area = length * breadth;
printf("\nArea of Rectangle : %d", area);

return (0);
}

#include<stdio.h>

int main() {
int length, breadth, area;

printf("\nEnter the Length of Rectangle : “);
scanf(”%d", &length);

printf("\nEnter the Breadth of Rectangle : “);
scanf(”%d", &breadth);

area = length * breadth;
printf("\nArea of Rectangle : %d", area);

return (0);
}

I am being wrongly penalized due to the false positive that MOSS has thrown during the Jan2018 long challenge.
Pls do restore my submissions.

They said in the mail explicitly to get back to them via mail. Do that.

Can we ask for suggestions for improving time complexity of our self build logic and code, without telling the problem exactly?

Hey can someone tell me that if someone copied my code during the contest then who will be penalized ?

any of the point which you have given above is not violating my any submission to make me guilty. so please kindly check it out this problem and dont deactivate my account and dont drop my rating

They said in the mail explicitly to get back to them via mail. Do that.

And in case if you want someone to ping them then contact @vijju123 over mail (id on his main profile). But he will forward your request only if you explain why your request should be forwarded by him and why you are not guilty.

check out this event for more competitive and challenging environment.
http://esya.iiitd.edu.in/event/Switcheroo

How Can Comments In Other Blogs?
WEBSITE

I am impressed by the information that you have on this blog. It shows how well you understand this subject.
https://customerfeedbacksystem.net/

Nice blog, the article you have shared is good. This article is very useful. My friend suggests me to use this blog.
https://itcustomersurvey.com/

I truly like you’re composing style, incredible data, thank you for posting.
https://onlinesurvey.today/

#include<stdio.h>
#include<stdlib.h>
#define getcx getchar_unlocked
inline void inp( int *n )//fast input function
{
*n=0;
int ch=getcx();int sign=1;
while( ch < ‘0’ || ch > ‘9’ ){if(ch==’-’)sign=-1; ch=getcx();}
while( ch >= ‘0’ && ch <= ‘9’ )
*n = (*n<<3)+(*n<<1) + ch-‘0’, ch=getcx();
*n=nsign;
}
inline void inplong( long *n )//fast input function
{
*n=0;
int ch=getcx();int sign=1;
while( ch < ‘0’ || ch > ‘9’ ){if(ch==’-’)sign=-1; ch=getcx();}
while( ch >= ‘0’ && ch <= ‘9’ )
*n = (*n<<3)+(n<<1) + ch-‘0’, ch=getcx();
n=nsign;
}
int main()
{
int i,T;
long j,N,val;
long long int cnt,cnt2;
inp(&T);
while(T–)
{
cnt=cnt2=0;
//scanf("%ld",&N);
inplong(&N);
while(N–)
{
inplong(&val);
// scanf("%ld",&val);
if(val==2){
cnt2++;
}
else if(val>1){
cnt++;
}
}
cnt+=cnt2;
printf("%lld\n",((cnt
(cnt-1))/2)-((cnt2
(cnt2-1))/2));
}
return 0;
}