結果

問題 No.2017 Mod7 Parade
ユーザー vwxyzvwxyz
提出日時 2022-09-27 03:25:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 319 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-02 00:42:29
合計ジャッジ時間 26,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 1,579 ms
11,008 KB
testcase_04 AC 935 ms
11,136 KB
testcase_05 AC 656 ms
10,880 KB
testcase_06 AC 1,813 ms
11,136 KB
testcase_07 AC 170 ms
11,008 KB
testcase_08 AC 880 ms
11,008 KB
testcase_09 AC 286 ms
10,880 KB
testcase_10 AC 889 ms
11,008 KB
testcase_11 AC 1,367 ms
11,136 KB
testcase_12 AC 1,126 ms
11,008 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,492 ms
11,008 KB
testcase_20 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

dp=[0]*7
dp[0]=1
DL=[0,1,4,6,5,2]
mod=10**9+7
K=int(readline())
for k in range(K):
    d,l=map(int,readline().split())
    prev=dp
    dp=[x for x in dp]
    for i in range(7):
        dp[(i*pow(10,l,7)+d*DL[l%6])%7]+=prev[i]
ans=sum(i*dp[i]%mod for i in range(7))%mod
print(ans)
0