結果

問題 No.1407 Kindness
ユーザー GER_chenGER_chen
提出日時 2021-02-26 21:52:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-02 14:32:29
合計ジャッジ時間 3,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 37 ms
51,456 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 94 ms
69,248 KB
testcase_13 AC 52 ms
62,080 KB
testcase_14 AC 54 ms
62,592 KB
testcase_15 AC 83 ms
68,352 KB
testcase_16 AC 67 ms
65,280 KB
testcase_17 AC 60 ms
63,744 KB
testcase_18 AC 58 ms
63,616 KB
testcase_19 AC 79 ms
67,968 KB
testcase_20 AC 73 ms
66,560 KB
testcase_21 AC 47 ms
60,032 KB
testcase_22 AC 49 ms
60,416 KB
testcase_23 AC 71 ms
66,304 KB
testcase_24 AC 92 ms
70,400 KB
testcase_25 AC 58 ms
63,744 KB
testcase_26 AC 64 ms
64,768 KB
testcase_27 AC 47 ms
60,544 KB
testcase_28 AC 82 ms
68,224 KB
testcase_29 AC 45 ms
59,904 KB
testcase_30 AC 87 ms
69,376 KB
testcase_31 AC 53 ms
62,208 KB
testcase_32 AC 85 ms
76,544 KB
testcase_33 AC 60 ms
66,048 KB
testcase_34 AC 75 ms
72,192 KB
testcase_35 AC 56 ms
64,896 KB
testcase_36 AC 47 ms
61,312 KB
testcase_37 AC 92 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int, input()))
l = len(N)
mod = 10**9+7
ans = (pow(45, l, mod)-1)*204545456%mod-1
multi = 1
for i in range(l):
    #print(ans)
    if i+1 < l:
        ans += multi*(N[i]-1)*N[i]//2*pow(45, l-1-i, mod)
    ans %= mod
    if i+1 < l:
        multi *= N[i]
    else:
        multi *= N[i]*(N[i]+1)//2
    multi %= mod
ans += multi
ans %= mod
print(ans)
0