Submission #6021385


Source Code Expand

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using static MyIO;


public class A
{
	public static void Main()
	{
		int S = GetInt();
		int T = GetInt();
		Console.WriteLine(T - S + 1);
	}
}


public static class MyIO
{
	private static string[] args = null;
	private static int num = -1;
	private static int used = -1;

	private static string getArg()
	{
		if(used == num)
		{
			args = Console.ReadLine().Split(' ');
			num = args.Length;
			used = 0;
		}
		return args[used++];
	}

	public static int GetInt(){ return int.Parse(getArg()); }
	public static long GetLong(){ return long.Parse(getArg()); }
	public static double GetDouble(){ return double.Parse(getArg()); }
	public static string GetString(){ return getArg(); }
}

Submission Info

Submission Time
Task A - アルバム
User DM7PvTyc
Language C# (Mono 4.6.2.0)
Score 100
Code Size 834 Byte
Status AC
Exec Time 21 ms
Memory 11092 KB

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 20 ms 11092 KB
case_02.txt AC 20 ms 9044 KB
case_03.txt AC 20 ms 11092 KB
case_04.txt AC 20 ms 11092 KB
case_05.txt AC 20 ms 11092 KB
case_06.txt AC 20 ms 11092 KB
case_07.txt AC 20 ms 11092 KB
case_08.txt AC 20 ms 9044 KB
case_09.txt AC 20 ms 9044 KB
case_10.txt AC 20 ms 11092 KB
case_11.txt AC 21 ms 11092 KB
case_12.txt AC 20 ms 9044 KB
case_13.txt AC 21 ms 11092 KB
case_14.txt AC 20 ms 9044 KB
case_15.txt AC 20 ms 11092 KB
sample_01.txt AC 21 ms 11092 KB
sample_02.txt AC 20 ms 11092 KB