Submission #3629349


Source Code Expand

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int k = sc.nextInt();

		int outputMax = 0;
		for (int i = a; i < a + k && i <= b ; i++) {
			outputMax = i;
			System.out.println(i);
		}

		int minOfRight = b - k + 1;
		if (minOfRight <= outputMax) minOfRight = outputMax + 1;
		for (int i = minOfRight; i <= b; i++) {
			System.out.println(i);
		}

		sc.close();
	}
}

Submission Info

Submission Time
Task B - Small and Large Integers
User kurita
Language Java8 (OpenJDK 1.8.0)
Score 200
Code Size 523 Byte
Status AC
Exec Time 107 ms
Memory 23636 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 16
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 107 ms 19156 KB
02.txt AC 105 ms 21076 KB
03.txt AC 103 ms 23636 KB
04.txt AC 100 ms 20692 KB
05.txt AC 99 ms 23124 KB
06.txt AC 102 ms 21716 KB
07.txt AC 98 ms 21844 KB
08.txt AC 99 ms 18640 KB
09.txt AC 99 ms 21332 KB
10.txt AC 97 ms 21460 KB
11.txt AC 97 ms 20692 KB
12.txt AC 98 ms 21972 KB
13.txt AC 97 ms 18516 KB
s1.txt AC 98 ms 21716 KB
s2.txt AC 97 ms 18516 KB
s3.txt AC 98 ms 21204 KB