結果
問題 | No.220 世界のなんとか2 |
ユーザー | moharan627 |
提出日時 | 2021-08-21 14:23:42 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 1,000 ms |
コード長 | 1,322 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 81,852 KB |
実行使用メモリ | 52,608 KB |
最終ジャッジ日時 | 2024-10-15 05:31:03 |
合計ジャッジ時間 | 1,692 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,712 KB |
testcase_01 | AC | 40 ms
52,224 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 40 ms
51,840 KB |
testcase_04 | AC | 40 ms
51,968 KB |
testcase_05 | AC | 41 ms
51,968 KB |
testcase_06 | AC | 41 ms
51,840 KB |
testcase_07 | AC | 41 ms
51,968 KB |
testcase_08 | AC | 42 ms
52,096 KB |
testcase_09 | AC | 41 ms
52,224 KB |
testcase_10 | AC | 41 ms
52,096 KB |
testcase_11 | AC | 42 ms
52,480 KB |
testcase_12 | AC | 41 ms
52,096 KB |
testcase_13 | AC | 41 ms
52,096 KB |
testcase_14 | AC | 42 ms
51,840 KB |
testcase_15 | AC | 42 ms
52,096 KB |
testcase_16 | AC | 42 ms
52,608 KB |
testcase_17 | AC | 42 ms
52,352 KB |
testcase_18 | AC | 42 ms
52,608 KB |
ソースコード
import sys INF = float('inf') #10**20,2**63,float('inf') MOD = 10**9 + 7 MOD2 = 998244353 #from collections import defaultdict def solve(): def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LC(): return list(input()) def IC(): return [int(c) for c in input()] def MI(): return map(int, sys.stdin.readline().split()) P = II() N = [1] + [0]*P L = len(N) Less = [[[0 for _ in range(3)] for _ in range(2)] for _ in range(L + 1)] Less[1][1][0] = 1 Less[1][0][0] = 2 Less[1][0][1] = 3 Less[1][0][2] = 3 Ans = 0 for i in range(L): for n in range(10): if n == 3: for m in range(3): Less[i+1][1][(m+n)%3] += Less[i][0][m] Less[i+1][1][(m+n)%3] += Less[i][1][m] else: for m in range(3): Less[i+1][0][(m+n)%3] += Less[i][0][m] Less[i+1][1][(m+n)%3] += Less[i][1][m] #print("Less:",Less[i+1]) Ans += sum(Less[i][1]) + Less[i][0][0] # 小さいサンプルでの確認は大事。 # print("Equ:",Equ) # print("Less:",Less) print(Ans) return solve() #sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!