結果

問題 No.220 世界のなんとか2
ユーザー tomatonosuketomatonosuke
提出日時 2017-04-02 02:07:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 606 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-07-07 19:17:38
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 46 ms
58,624 KB
testcase_15 AC 44 ms
58,624 KB
testcase_16 AC 44 ms
58,752 KB
testcase_17 AC 44 ms
58,624 KB
testcase_18 AC 45 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

power = int(input())
target = str(10 ** power)
length = len(target)
dp = [[[[0 for l in range(3)] for m in range(2)] for n in range(2)] for k in range(length + 1)]
dp[0][0][0][0] = 1
for i,t in enumerate(target):
    for flag in range(2):
        for div in range(2):
            for modu in range(3):
                limit = 9 if flag else int(t)
                for lim in range(limit + 1):
                    dp[i+1][flag or lim < int(t)][div or lim == 3][(modu * 10 + lim) % 3] += dp[i][flag][div][modu]
print(dp[length][1][1][0] + dp[length][1][1][1] + dp[length][1][1][2] + dp[length][1][0][0] - 1)
0