結果

問題 No.220 世界のなんとか2
ユーザー ntudantuda
提出日時 2024-11-05 20:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 243 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-11-05 20:17:40
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,952 KB
testcase_01 AC 38 ms
52,520 KB
testcase_02 AC 38 ms
53,364 KB
testcase_03 AC 39 ms
52,476 KB
testcase_04 AC 36 ms
53,248 KB
testcase_05 AC 37 ms
52,936 KB
testcase_06 AC 37 ms
53,564 KB
testcase_07 AC 38 ms
53,768 KB
testcase_08 AC 38 ms
52,120 KB
testcase_09 AC 38 ms
52,660 KB
testcase_10 AC 37 ms
53,544 KB
testcase_11 AC 37 ms
52,240 KB
testcase_12 AC 37 ms
53,628 KB
testcase_13 AC 37 ms
52,660 KB
testcase_14 AC 37 ms
52,008 KB
testcase_15 AC 37 ms
53,052 KB
testcase_16 AC 38 ms
53,868 KB
testcase_17 AC 38 ms
52,196 KB
testcase_18 AC 38 ms
52,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import comb

P = int(input())
ans = 0
Y = [0] * (P + 1)
for x in range(1, P + 1):
    cnt = (pow(10, x) - 1) // 3
    for i in range(1, x):
        cnt += comb(x, i) * Y[x - i]
    ans = cnt
    Y[x] = pow(10, x) - cnt - 1
print(ans)
0