結果

問題 No.741 AscNumber(Easy)
ユーザー tsuchinagatsuchinaga
提出日時 2019-05-21 12:36:57
言語 Go
(1.22.1)
結果
AC  
実行時間 971 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 12,972 ms
コンパイル使用メモリ 228,508 KB
実行使用メモリ 8,200 KB
最終ジャッジ日時 2024-09-17 08:55:08
合計ジャッジ時間 25,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 922 ms
8,196 KB
testcase_36 AC 410 ms
8,200 KB
testcase_37 AC 481 ms
8,200 KB
testcase_38 AC 477 ms
8,196 KB
testcase_39 AC 402 ms
8,196 KB
testcase_40 AC 541 ms
8,196 KB
testcase_41 AC 845 ms
8,200 KB
testcase_42 AC 449 ms
8,096 KB
testcase_43 AC 328 ms
8,196 KB
testcase_44 AC 664 ms
8,200 KB
testcase_45 AC 714 ms
8,200 KB
testcase_46 AC 880 ms
8,196 KB
testcase_47 AC 153 ms
8,100 KB
testcase_48 AC 883 ms
8,200 KB
testcase_49 AC 738 ms
8,200 KB
testcase_50 AC 104 ms
8,100 KB
testcase_51 AC 344 ms
8,100 KB
testcase_52 AC 971 ms
8,200 KB
testcase_53 AC 965 ms
8,196 KB
testcase_54 AC 956 ms
8,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func main() {
	var n int
	_, _ = fmt.Scan(&n)

	mod := int(math.Pow10(9)) + 7
	nums := map[int]int{1: 1, 2: 1, 3: 1, 4: 1, 5: 1, 6: 1, 7: 1, 8: 1, 9: 1}
	ans := 10
	for i := 2; i <= n; i++ {
		total := 0
		tmp := make(map[int]int)
		for j := 9; j >= 1; j-- {
			total = (total + nums[j]) % mod
			tmp[j] = total
			ans = (ans + total) % mod
		}
		nums = tmp
	}
	fmt.Println(ans)
}
0