結果

問題 No.2017 Mod7 Parade
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-02 15:13:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,160 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2024-09-02 15:14:04
合計ジャッジ時間 15,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,532 KB
testcase_01 AC 37 ms
52,284 KB
testcase_02 AC 36 ms
52,184 KB
testcase_03 AC 891 ms
76,356 KB
testcase_04 AC 591 ms
76,184 KB
testcase_05 AC 453 ms
76,264 KB
testcase_06 AC 958 ms
76,276 KB
testcase_07 AC 164 ms
72,908 KB
testcase_08 AC 566 ms
76,236 KB
testcase_09 AC 250 ms
76,216 KB
testcase_10 AC 590 ms
76,292 KB
testcase_11 AC 757 ms
76,408 KB
testcase_12 AC 704 ms
76,152 KB
testcase_13 AC 1,100 ms
76,288 KB
testcase_14 AC 1,057 ms
76,560 KB
testcase_15 AC 1,087 ms
76,000 KB
testcase_16 AC 1,102 ms
76,324 KB
testcase_17 AC 1,093 ms
76,296 KB
testcase_18 AC 1,160 ms
76,616 KB
testcase_19 AC 182 ms
76,268 KB
testcase_20 AC 38 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
q=[0]*7
q[0]=1
M=10**9+7
for _ in range(n):
  nq=q.copy()
  d,l=map(int,input().split())
  for i in range(7):
    j=(i*pow(10,l,7)+d*(pow(10,l,7)-1)*pow(9,7-2,7))%7
    nq[j]+=q[i]
    nq[j]%=M
  q=nq
print(sum(i*q[i] for i in range(7))%M)
0