結果
問題 | No.2017 Mod7 Parade |
ユーザー | otoshigo |
提出日時 | 2022-07-23 16:51:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 1,286 bytes |
コンパイル時間 | 4,325 ms |
コンパイル使用メモリ | 262,448 KB |
実行使用メモリ | 20,736 KB |
最終ジャッジ日時 | 2024-07-05 06:09:49 |
合計ジャッジ時間 | 6,175 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
19,968 KB |
testcase_01 | AC | 14 ms
19,968 KB |
testcase_02 | AC | 13 ms
19,840 KB |
testcase_03 | AC | 43 ms
20,480 KB |
testcase_04 | AC | 34 ms
20,224 KB |
testcase_05 | AC | 29 ms
20,224 KB |
testcase_06 | AC | 46 ms
20,608 KB |
testcase_07 | AC | 18 ms
19,840 KB |
testcase_08 | AC | 33 ms
20,352 KB |
testcase_09 | AC | 21 ms
20,096 KB |
testcase_10 | AC | 32 ms
20,224 KB |
testcase_11 | AC | 39 ms
20,352 KB |
testcase_12 | AC | 37 ms
20,352 KB |
testcase_13 | AC | 53 ms
20,736 KB |
testcase_14 | AC | 51 ms
20,736 KB |
testcase_15 | AC | 51 ms
20,736 KB |
testcase_16 | AC | 50 ms
20,736 KB |
testcase_17 | AC | 50 ms
20,608 KB |
testcase_18 | AC | 49 ms
20,608 KB |
testcase_19 | AC | 42 ms
20,608 KB |
testcase_20 | AC | 14 ms
19,968 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using mint = modint1000000007; #define rep(i,n) for (int i = 0; i < n; i++) #define rrep(i,n) for (int i = n-1; i >= 0; i--) #define rep2(i,a,b) for (int i = a; i < b; i++) #define rrep2(i,a,b) for (int i = a-1; i >= b; i--) #define rep3(i,a,b,c) for (int i = a; i < b; i+=c) #define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} const vector<int>M={}; int k; int D[100010],L[100010]; mint dp[100010][6][7]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cin>>k; rrep(i,k){ cin>>D[i]>>L[i]; L[i]%=6; } dp[0][0][0]=1; rep(i,k){ int c=0; rep(j,L[i])c=(10*c+D[i])%7; rep(j,6){ rep(l,7){ dp[i+1][j][l]+=dp[i][j][l]; dp[i+1][(j+L[i])%6][(l+c)%7]+=dp[i][j][l]; } c=10*c%7; } } mint ans=0; rep(i,6)rep(j,7)ans+=j*dp[k][i][j]; cout<<ans.val()<<"\n"; }