洛谷 P7199 【[COCI2019-2020#1] Trol】一、直接模拟二、数论
一、直接模拟看到题第一想法就是直接模拟,毕竟只是一道红题。模拟代码:#include<iostream>#include<cstdio>#define ll unsigned long longusing namespace std;int q;ll l,r;ll ans;ll f(ll n){ int r; int a=0; while(n/10!=0) { a=0; while(n!=0) { r=n%10; a+=r;