题库 信息学奥赛题库 题目列表 NOIP2009年普及组阅读程序填写结果题:#include ...
填空题

NOIP2009年普及组阅读程序填写结果题:

#include <iostream>
usingnamespacestd;
constint c = 2009;
int main() {
    int n, p, s, i, j, t;
    cin >> n >> p;
    s = 0;
    t = 1;
    for (i = 1; i <= n; i++) {
        t = t * p % c;
        for (j = 1; j <= i; j++)
            s = (s + t) % c;
    }
    cout << s << endl;
    return0;
}

输入:11 2 

输出:____

题目信息
阅读程序 2009年 初赛
-
正确率
0
评论
224
点击