Submission #3217108


Source Code Expand

#include <iostream>
#include <string>
#include <algorithm>
#include <stack>
#include <queue>
#include <map>
#include <cmath>
#include <time.h>
#include <stdio.h>
#define int long long
using namespace std;
int gcd(int x, int y) {
	if (y == 0)return x;
	return gcd(y, x%y);
}
int lcm(int x, int y) {
	return x / gcd(x, y)*y;
}
int mypow(int x, int y) {
	if (y == 0)return 1;
	if (y % 2)return mypow(x, y - 1)*x;
	else return mypow(x, y / 2)*mypow(x, y / 2);
}
int Max(int x, int y) {
	if (x > y)return x;
	else return y;
}
int Min(int x, int y) {
	if (x < y)return x;
	else return y;
}
inline void shoki()
{
	srand((unsigned int)time(NULL));
}
/*Library End!*/

signed main() {
	int s, t;
	cin >> s >> t;
	cout << t - s + 1 << endl;
end:;
	system("PAUSE");
	return 0;
}

Submission Info

Submission Time
Task A - アルバム
User define
Language C++14 (GCC 5.4.1)
Score 100
Code Size 813 Byte
Status AC
Exec Time 2 ms
Memory 504 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:43:17: warning: ignoring return value of ‘int system(const char*)’, declared with attribute warn_unused_result [-Wunused-result]
  system("PAUSE");
                 ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 17
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
All sample_01.txt, sample_02.txt, case_01.txt, case_02.txt, case_03.txt, case_04.txt, case_05.txt, case_06.txt, case_07.txt, case_08.txt, case_09.txt, case_10.txt, case_11.txt, case_12.txt, case_13.txt, case_14.txt, case_15.txt
Case Name Status Exec Time Memory
case_01.txt AC 2 ms 504 KB
case_02.txt AC 2 ms 504 KB
case_03.txt AC 2 ms 504 KB
case_04.txt AC 2 ms 504 KB
case_05.txt AC 2 ms 504 KB
case_06.txt AC 2 ms 504 KB
case_07.txt AC 2 ms 504 KB
case_08.txt AC 2 ms 504 KB
case_09.txt AC 2 ms 504 KB
case_10.txt AC 2 ms 504 KB
case_11.txt AC 2 ms 504 KB
case_12.txt AC 2 ms 504 KB
case_13.txt AC 2 ms 504 KB
case_14.txt AC 2 ms 500 KB
case_15.txt AC 2 ms 504 KB
sample_01.txt AC 2 ms 504 KB
sample_02.txt AC 2 ms 504 KB