結果

問題 No.2017 Mod7 Parade
ユーザー googol_S0googol_S0
提出日時 2022-07-22 21:27:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,660 KB
最終ジャッジ日時 2024-07-04 05:24:28
合計ジャッジ時間 4,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,488 KB
testcase_01 AC 37 ms
53,196 KB
testcase_02 AC 34 ms
52,820 KB
testcase_03 AC 159 ms
76,660 KB
testcase_04 AC 124 ms
76,228 KB
testcase_05 AC 107 ms
76,328 KB
testcase_06 AC 172 ms
76,208 KB
testcase_07 AC 68 ms
73,904 KB
testcase_08 AC 122 ms
76,012 KB
testcase_09 AC 83 ms
76,204 KB
testcase_10 AC 125 ms
76,356 KB
testcase_11 AC 149 ms
76,324 KB
testcase_12 AC 137 ms
76,340 KB
testcase_13 AC 191 ms
76,340 KB
testcase_14 AC 191 ms
76,380 KB
testcase_15 AC 192 ms
76,292 KB
testcase_16 AC 193 ms
76,072 KB
testcase_17 AC 191 ms
76,140 KB
testcase_18 AC 186 ms
76,292 KB
testcase_19 AC 116 ms
76,120 KB
testcase_20 AC 36 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
X=[0]*7
X[0]=1
for t in range(int(input())):
  d,l=map(int,input().split())
  a=pow(10,l,7)
  b=((a-1)*d%7)*pow(9,5,7)%7
  Y=X[:]
  for i in range(7):
    Y[(a*i+b)%7]=(Y[(a*i+b)%7]+X[i])%mod
  X=Y[:]
print(sum([i*X[i] for i in range(7)])%mod)
0