結果
問題 | No.1331 Moving Penguin |
ユーザー | mkawa2 |
提出日時 | 2021-01-08 22:14:26 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,211 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 89,472 KB |
最終ジャッジ日時 | 2024-11-16 12:41:50 |
合計ジャッジ時間 | 7,362 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 43 ms
52,352 KB |
testcase_02 | AC | 43 ms
52,224 KB |
testcase_03 | AC | 43 ms
52,480 KB |
testcase_04 | RE | - |
testcase_05 | AC | 328 ms
89,088 KB |
testcase_06 | AC | 328 ms
89,216 KB |
testcase_07 | AC | 328 ms
89,216 KB |
testcase_08 | AC | 96 ms
89,088 KB |
testcase_09 | AC | 92 ms
89,088 KB |
testcase_10 | AC | 94 ms
89,216 KB |
testcase_11 | AC | 95 ms
89,344 KB |
testcase_12 | AC | 95 ms
89,088 KB |
testcase_13 | AC | 95 ms
89,344 KB |
testcase_14 | AC | 111 ms
89,344 KB |
testcase_15 | AC | 112 ms
89,216 KB |
testcase_16 | AC | 111 ms
88,960 KB |
testcase_17 | AC | 96 ms
89,472 KB |
testcase_18 | AC | 97 ms
89,344 KB |
testcase_19 | AC | 95 ms
89,472 KB |
testcase_20 | AC | 95 ms
88,832 KB |
testcase_21 | AC | 94 ms
89,088 KB |
testcase_22 | AC | 94 ms
89,472 KB |
testcase_23 | AC | 100 ms
89,216 KB |
testcase_24 | AC | 100 ms
89,088 KB |
testcase_25 | AC | 100 ms
89,088 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 76 ms
81,536 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def MI(): return map(int, sys.stdin.buffer.readline().split()) def MI1(): return map(int1, sys.stdin.buffer.readline().split()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [[(-1, 0), (1, 0)], [(0, -1), (0, 1)]] inf = 10**16 # md = 998244353 md = 10**9+7 n = II() aa = LI() dp = [0]*(n+1) dp[0] = 1 bb = [[0]*101 for _ in range(101)] fin=set() for i, a in enumerate(aa): for m in fin: dp[i] += bb[m][i%m] dp[i] %= md fin.add(a) pre = dp[i] if pre == 0: continue if a > 100: for j in range(i+a, n+1): dp[j] += pre dp[j] %= md else: bb[a][i%a] += pre bb[a][i%a] %= md if a > 1: dp[i+1] += pre dp[i+1] %= md print(dp[n-1]%md)