上一页 1 ··· 4 5 6 7 8
摘要: Description 给定n,m,求$\sum_{i=1}^{n}\sum_{j=1}^{m}\varphi(ij)$模10^9+7的值。 Input 仅一行,两个整数n,m。 Output 仅一行答案。 Sample Input 100000 1000000000 Sample Output 8 阅读全文
posted @ 2018-07-30 11:51 CK6100LGEV2 阅读(398) 评论(0) 推荐(0)
摘要: Description 输入两个数字,输出它们之和 Input 一行两个数字A,B(0 using namespace std; int main() { int a,b; scanf("%d%d",&a,&b); printf("%d\n",a+b); } ``` 阅读全文
posted @ 2018-07-29 17:52 CK6100LGEV2 阅读(195) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8