Submission #3601403


Source Code Expand

package main

import (
	"bufio"
	"os"
	"fmt"
)

var rdr = bufio.NewReaderSize(os.Stdin, 1000000)

func main() {
	var s, t int
	fmt.Scan(&s, &t)
	fmt.Println(t-s+1)
}

func gcd(x, y int) int {
	if y == 0{
		return x
	}
	return gcd(y, x % y)
}

func lcm(x, y int) int {
	return x*y / gcd(x, y)
}

func readLine() string {
	buf := make([]byte, 0, 1000000)
	for {
		line, isPrefix, err := rdr.ReadLine()
		if err != nil {
			panic(err)
		}
		buf = append(buf, line...)
		if !isPrefix {
			break
		}
	}
	return string(buf)
}

Submission Info

Submission Time
Task A - アルバム
User ta7uw
Language Go (1.6)
Score 100
Code Size 561 Byte
Status AC
Exec Time 1 ms
Memory 640 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 1 ms 640 KB
case_02.txt AC 1 ms 640 KB
case_03.txt AC 1 ms 640 KB
case_04.txt AC 1 ms 640 KB
case_05.txt AC 1 ms 640 KB
case_06.txt AC 1 ms 640 KB
case_07.txt AC 1 ms 640 KB
case_08.txt AC 1 ms 640 KB
case_09.txt AC 1 ms 640 KB
case_10.txt AC 1 ms 640 KB
case_11.txt AC 1 ms 640 KB
case_12.txt AC 1 ms 640 KB
case_13.txt AC 1 ms 640 KB
case_14.txt AC 1 ms 640 KB
case_15.txt AC 1 ms 640 KB
sample_01.txt AC 1 ms 640 KB
sample_02.txt AC 1 ms 640 KB