結果

問題 No.1011 Infinite Stairs
ユーザー c-yanc-yan
提出日時 2020-03-20 22:35:41
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 802 bytes
コンパイル時間 11,730 ms
コンパイル使用メモリ 233,012 KB
実行使用メモリ 18,852 KB
最終ジャッジ日時 2024-12-15 06:56:45
合計ジャッジ時間 42,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
16,036 KB
testcase_01 AC 1 ms
13,632 KB
testcase_02 AC 18 ms
13,644 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1 ms
13,636 KB
testcase_07 AC 456 ms
14,832 KB
testcase_08 AC 1 ms
13,640 KB
testcase_09 AC 1 ms
13,764 KB
testcase_10 AC 192 ms
13,636 KB
testcase_11 TLE -
testcase_12 AC 41 ms
6,820 KB
testcase_13 AC 1,847 ms
7,916 KB
testcase_14 AC 33 ms
6,816 KB
testcase_15 AC 367 ms
7,928 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,726 ms
7,936 KB
testcase_19 AC 8 ms
6,816 KB
testcase_20 AC 212 ms
6,820 KB
testcase_21 AC 1,175 ms
7,924 KB
testcase_22 TLE -
testcase_23 AC 1,308 ms
7,916 KB
testcase_24 AC 691 ms
6,816 KB
testcase_25 AC 1,266 ms
7,900 KB
testcase_26 AC 495 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func main() {
	N := readInt()
	d := readInt()
	K := readInt()

	t0 := make([]int, d*N+K+1)
	t0[0] = 1
	for i := 0; i < N; i++ {
		t1 := make([]int, d*N+K+1)
		for j := 0; j < i*d+1; j++ {
			for k := 0; k < d; k++ {
				t1[j+k] += t0[j]
				t1[j+k] %= 1000000007
			}
		}
		t0 = t1
	}
	fmt.Println(t0[K-N])
}

const (
	ioBufferSize = 1 * 1024 * 1024 // 1 MB
)

var stdinScanner = func() *bufio.Scanner {
	result := bufio.NewScanner(os.Stdin)
	result.Buffer(make([]byte, ioBufferSize), ioBufferSize)
	result.Split(bufio.ScanWords)
	return result
}()

func readString() string {
	stdinScanner.Scan()
	return stdinScanner.Text()
}

func readInt() int {
	result, err := strconv.Atoi(readString())
	if err != nil {
		panic(err)
	}
	return result
}
0