Submission #8390681


Source Code Expand

/*
	submission # - User: herp_sy
	https://atcoder.jp/contests/

	coding: utf-8
	lang: C (GCC 5.4.1)
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <stdbool.h>

#define _CRT_SECURE_NO_WARNINGS
#define TLong long long
#define TBMod 1000000007

int main(int argc, char const *argv[])
{
	TLong n,a,b;
	scanf("%lld%lld%lld",&n,&a,&b);
	printf("%lld\n", (b - a) * (n - 2) + 1);
	return 0;
}

Submission Info

Submission Time
Task A - A+...+B Problem
User herp_sy
Language C (GCC 5.4.1)
Score 0
Code Size 453 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:22:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld%lld%lld",&n,&a,&b);
  ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 2
WA × 2
AC × 7
WA × 5
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt, s4.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, s1.txt, s2.txt, s3.txt, s4.txt
Case Name Status Exec Time Memory
01.txt AC 1 ms 128 KB
02.txt AC 1 ms 128 KB
03.txt WA 1 ms 128 KB
04.txt AC 1 ms 128 KB
05.txt WA 1 ms 128 KB
06.txt WA 1 ms 128 KB
07.txt AC 1 ms 128 KB
08.txt AC 1 ms 128 KB
s1.txt AC 1 ms 128 KB
s2.txt WA 1 ms 128 KB
s3.txt WA 1 ms 128 KB
s4.txt AC 1 ms 128 KB