摘要: 给你一个长度为50的数字串,问你有多少个子序列构成的数字可以被3整除 #include<bits/stdc++.h>using namespace std;const int N = 1e6+7;const int mod = 1e9+7;char s[100];int n,dp[100][5],a 阅读全文
posted @ 2020-12-01 14:30 PdrEam 阅读(103) 评论(0) 推荐(0)