摘要:
/** *Timus 1014.Product of Digits *Accepted *0.001 252 KB */ #include using namespace std; /// int n; long long solve(int num){ if(num==0) return 10; if(num==1) return 1; long long ans=... 阅读全文
posted @ 2017-11-25 15:50
Sherlock-Tang
阅读(172)
评论(0)
推荐(0)