Submission #168574


Source Code Expand

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.math.BigInteger;
 
import java.util.*;
import java.util.Map.Entry;
 
public class Main {
	
	
	public static void main(String[] args) throws IOException{
		Scanner sc = new Scanner(System.in);
		
		final int S = sc.nextInt();
		final int T = sc.nextInt();
		
		System.out.println(T - S + 1);
	}
	
	public static class Scanner {
		
		private BufferedReader br;
		private StringTokenizer tok;
		
		public Scanner(InputStream is) throws IOException{
			br = new BufferedReader(new InputStreamReader(is));
			getLine();
		}
		
		private void getLine() throws IOException{
			while(tok == null || !tok.hasMoreTokens()){
				tok = new StringTokenizer(br.readLine());
			}
		}
		
		private boolean hasNext(){
			return tok.hasMoreTokens();
		}
		
		public String next() throws IOException{
			if(hasNext()){
				return tok.nextToken();
			}else{
				getLine();
				return tok.nextToken();
			}
		}
		
		public int nextInt() throws IOException{
			if(hasNext()){
				return Integer.parseInt(tok.nextToken());
			}else{
				getLine();
				return Integer.parseInt(tok.nextToken());
			}
		}
		
		public long nextLong() throws IOException{
			if(hasNext()){
				return Long.parseLong(tok.nextToken());
			}else{
				getLine();
				return Long.parseLong(tok.nextToken());
			}
		}
		
		public double nextDouble() throws IOException{
			if(hasNext()){
				return Double.parseDouble(tok.nextToken());
			}else{
				getLine();
				return Double.parseDouble(tok.nextToken());
			}
		}
	}
}

Submission Info

Submission Time
Task A - アルバム
User mondatto
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 1682 Byte
Status AC
Exec Time 425 ms
Memory 20780 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 409 ms 20780 KB
case_02.txt AC 398 ms 20664 KB
case_03.txt AC 407 ms 20536 KB
case_04.txt AC 425 ms 20656 KB
case_05.txt AC 395 ms 20532 KB
case_06.txt AC 382 ms 20660 KB
case_07.txt AC 403 ms 20660 KB
case_08.txt AC 400 ms 20704 KB
case_09.txt AC 381 ms 20660 KB
case_10.txt AC 393 ms 20528 KB
case_11.txt AC 398 ms 20624 KB
case_12.txt AC 402 ms 20532 KB
case_13.txt AC 407 ms 20652 KB
case_14.txt AC 417 ms 20656 KB
case_15.txt AC 393 ms 20648 KB
sample_01.txt AC 394 ms 20660 KB
sample_02.txt AC 396 ms 20656 KB