結果
問題 | No.1407 Kindness |
ユーザー | 👑 Kazun |
提出日時 | 2021-07-05 04:10:03 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 335 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 77,672 KB |
最終ジャッジ日時 | 2024-07-01 11:54:35 |
合計ジャッジ時間 | 3,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
55,624 KB |
testcase_01 | AC | 45 ms
55,772 KB |
testcase_02 | AC | 44 ms
55,664 KB |
testcase_03 | AC | 44 ms
55,004 KB |
testcase_04 | AC | 45 ms
56,012 KB |
testcase_05 | AC | 45 ms
56,588 KB |
testcase_06 | AC | 45 ms
56,760 KB |
testcase_07 | AC | 45 ms
55,060 KB |
testcase_08 | AC | 45 ms
54,216 KB |
testcase_09 | AC | 45 ms
55,040 KB |
testcase_10 | AC | 44 ms
54,680 KB |
testcase_11 | AC | 44 ms
55,200 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 142 ms
77,672 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 103 ms
77,348 KB |
testcase_37 | RE | - |
ソースコード
from functools import lru_cache @lru_cache(None) def f(N): if N<=9: return N*(N+1)//2 q,r=divmod(N,10) a=r*(r+1)//2 b=(10+r)*(9-r)//2 return ((1+f(q))*a+(1+f(q-1))*b)%Mod N=int(input()) Mod=10**9+7 N_str=[int(n) for n in str(N)] M=0 for n in N_str: M=10*M+n _=f(M); _=f(M-1); print(f(N))