結果

問題 No.741 AscNumber(Easy)
ユーザー hedwig100hedwig100
提出日時 2020-04-26 15:51:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 496 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 88,688 KB
最終ジャッジ日時 2024-11-17 10:01:45
合計ジャッジ時間 76,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
51,040 KB
testcase_01 AC 500 ms
88,568 KB
testcase_02 AC 488 ms
51,300 KB
testcase_03 AC 496 ms
87,916 KB
testcase_04 AC 508 ms
51,288 KB
testcase_05 AC 490 ms
88,296 KB
testcase_06 AC 491 ms
50,776 KB
testcase_07 AC 500 ms
88,228 KB
testcase_08 AC 491 ms
51,024 KB
testcase_09 AC 495 ms
88,120 KB
testcase_10 AC 506 ms
51,672 KB
testcase_11 AC 506 ms
51,152 KB
testcase_12 AC 513 ms
50,780 KB
testcase_13 AC 503 ms
87,920 KB
testcase_14 AC 497 ms
51,156 KB
testcase_15 AC 504 ms
88,304 KB
testcase_16 AC 511 ms
51,160 KB
testcase_17 AC 499 ms
88,352 KB
testcase_18 AC 508 ms
50,768 KB
testcase_19 AC 506 ms
88,308 KB
testcase_20 AC 506 ms
51,036 KB
testcase_21 AC 511 ms
88,040 KB
testcase_22 AC 519 ms
51,168 KB
testcase_23 AC 528 ms
88,688 KB
testcase_24 AC 516 ms
51,024 KB
testcase_25 AC 508 ms
88,552 KB
testcase_26 AC 537 ms
51,044 KB
testcase_27 AC 497 ms
43,964 KB
testcase_28 AC 504 ms
44,084 KB
testcase_29 AC 489 ms
44,348 KB
testcase_30 AC 504 ms
44,084 KB
testcase_31 AC 504 ms
44,124 KB
testcase_32 AC 491 ms
44,216 KB
testcase_33 AC 496 ms
44,596 KB
testcase_34 AC 505 ms
44,336 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 1,299 ms
44,184 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 1,086 ms
44,596 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
import numpy as np

def main():
    n = int(input())
    ans = 10
    dp1 = np.ones(10,dtype = np.int64)
    for i in range(n - 1):
        if i == 0:
            dp2 = dp1[1:].cumsum()
            dp2 %= MOD
        else:
            dp2 = dp1.cumsum()
            dp2 %= MOD
        ans += dp2.sum()
        ans %= MOD
        dp1 = dp2
    print(ans)
if __name__=='__main__':
    main()
0