結果

問題 No.220 世界のなんとか2
ユーザー terasaterasa
提出日時 2022-11-04 21:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 1,456 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 56,576 KB
最終ジャッジ日時 2024-07-18 19:35:33
合計ジャッジ時間 1,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,424 KB
testcase_01 AC 53 ms
55,424 KB
testcase_02 AC 52 ms
55,296 KB
testcase_03 AC 47 ms
55,936 KB
testcase_04 AC 49 ms
55,680 KB
testcase_05 AC 48 ms
55,424 KB
testcase_06 AC 49 ms
56,192 KB
testcase_07 AC 49 ms
55,680 KB
testcase_08 AC 48 ms
55,808 KB
testcase_09 AC 54 ms
55,936 KB
testcase_10 AC 56 ms
55,808 KB
testcase_11 AC 49 ms
56,576 KB
testcase_12 AC 48 ms
55,936 KB
testcase_13 AC 49 ms
55,808 KB
testcase_14 AC 51 ms
56,320 KB
testcase_15 AC 50 ms
56,192 KB
testcase_16 AC 50 ms
56,448 KB
testcase_17 AC 51 ms
56,192 KB
testcase_18 AC 49 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
import heapq
import bisect
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

# for AtCoder Easy test
if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input().rstrip()


P = int(input())
S = str(10 ** P)
dp = [[[0, 0] for _ in range(2)] for _ in range(3)]
dp[0][0][0] = 1
for i in range(len(S)):
    ndp = [[[0, 0] for _ in range(2)] for _ in range(3)]
    for j in range(3):
        for k in range(10):
            n = (j + k) % 3
            if k == 3:
                ndp[n][1][1] += dp[j][1][1] + dp[j][0][1]
            else:
                ndp[n][1][1] += dp[j][1][1]
                ndp[n][0][1] += dp[j][0][1]

            if k < int(S[i]):
                if k == 3:
                    ndp[n][1][1] += dp[j][1][0] + dp[j][0][0]
                else:
                    ndp[n][1][1] += dp[j][1][0]
                    ndp[n][0][1] += dp[j][0][0]
            elif k == int(S[i]):
                if k == 3:
                    ndp[n][1][0] += dp[j][1][0] + dp[j][0][0]
                else:
                    ndp[n][1][0] += dp[j][1][0]
                    ndp[n][0][0] += dp[j][0][0]
    dp = ndp

ans = 0
for i in range(3):
    for j in range(2):
        if i == 0 or j == 1:
            ans += sum(dp[i][j])
print(ans - 1)
0