結果

問題 No.220 世界のなんとか2
ユーザー convexineqconvexineq
提出日時 2020-12-19 11:24:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 275 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 64,940 KB
最終ジャッジ日時 2024-09-21 10:10:40
合計ジャッジ時間 1,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,004 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 38 ms
52,276 KB
testcase_03 AC 40 ms
58,176 KB
testcase_04 AC 42 ms
57,672 KB
testcase_05 AC 41 ms
59,212 KB
testcase_06 AC 42 ms
59,424 KB
testcase_07 AC 41 ms
58,552 KB
testcase_08 AC 42 ms
57,628 KB
testcase_09 AC 42 ms
59,196 KB
testcase_10 AC 43 ms
59,488 KB
testcase_11 AC 42 ms
58,360 KB
testcase_12 AC 42 ms
58,800 KB
testcase_13 AC 43 ms
59,012 KB
testcase_14 AC 42 ms
58,624 KB
testcase_15 AC 43 ms
59,804 KB
testcase_16 AC 44 ms
60,380 KB
testcase_17 AC 51 ms
64,052 KB
testcase_18 AC 53 ms
64,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {}
def get(x,r,f):
    if (x,r,f) in d: return d[x,r,f]
    if x < 0: return 0
    if x==0: return 1 if r == 0 or f == 1 else 0
    res = sum(get((x-i)//10, (r-i)%3, f|(i==3)) for i in range(10))
    d[x,r,f] = res
    return res

n = int(input())
print(get(10**n,0,0)-1)
0