HDU3652 B-number
摘要:
##B-number 题意: 求1-n(<=1e9)中是13的倍数且包含“13”的个数。多组数据。 数位DP #include<bits/stdc++.h> using namespace std; int n; int dat[15],cnt; int f[13][11][2][15]; int 阅读全文
posted @ 2022-10-04 16:33 gryzy 阅读(19) 评论(0) 推荐(0) 编辑