結果

問題 No.533 Mysterious Stairs
ユーザー tookunn_1213tookunn_1213
提出日時 2017-06-23 23:10:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 5,000 ms
コード長 255 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 178,624 KB
最終ジャッジ日時 2024-10-04 07:55:03
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 36 ms
52,608 KB
testcase_09 AC 36 ms
52,736 KB
testcase_10 AC 38 ms
58,880 KB
testcase_11 AC 48 ms
61,312 KB
testcase_12 AC 47 ms
62,976 KB
testcase_13 AC 49 ms
63,232 KB
testcase_14 AC 49 ms
63,104 KB
testcase_15 AC 51 ms
64,256 KB
testcase_16 AC 50 ms
65,920 KB
testcase_17 AC 52 ms
68,480 KB
testcase_18 AC 52 ms
70,144 KB
testcase_19 AC 56 ms
72,064 KB
testcase_20 AC 105 ms
87,808 KB
testcase_21 AC 117 ms
88,832 KB
testcase_22 AC 226 ms
115,712 KB
testcase_23 AC 500 ms
177,152 KB
testcase_24 AC 497 ms
178,624 KB
testcase_25 AC 109 ms
87,680 KB
testcase_26 AC 460 ms
164,516 KB
testcase_27 AC 167 ms
101,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10**9+7
dp = [[0 for j in range(4)] for i in range(N+1)]
dp[0][0] = 1
for i in range(N):
	for j in range(4):
		for k in range(1,4):
			if j == k:
				continue
			if i+k <= N:
				dp[i+k][k] += dp[i][j] % MOD
print(sum(dp[N]) % MOD)
0