結果
問題 | No.2017 Mod7 Parade |
ユーザー | titia |
提出日時 | 2022-07-23 06:14:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 702 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 24,320 KB |
最終ジャッジ日時 | 2024-07-04 15:55:20 |
合計ジャッジ時間 | 3,986 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,384 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import sys input = sys.stdin.readline mod=10**9+7 K=int(input()) DL=[tuple(map(int,input().split())) for i in range(K)] DL.reverse() DP=[[0]*7 for i in range(6)] # DP[i][j]で、桁数 mod 6がi個、答え mod 7がjとなるものの個数 DP[0][0]=1 P=pow(9,5,7) Q=[pow(10,i,7) for i in range(10)] for D,L in DL: NDP=[[0]*7 for i in range(6)] x=D*(pow(10,L,7)-1)*P%7 for i in range(6): for j in range(7): NDP[i][j]+=DP[i][j] NDP[(i+L)%6][(j+x*Q[i])%7]+=DP[i][j] for i in range(6): for j in range(7): DP[i][j]=NDP[i][j]%mod ANS=0 for i in range(6): for j in range(7): ANS+=DP[i][j]*j ANS%=mod print(ANS)