记录编号 345478 评测结果 AAAAAAAAAA
题目名称 小L的取膜算式 最终得分 100
用户昵称 Gravatarsxysxy 是否通过 通过
代码语言 C++ 运行时间 2.017 s
提交时间 2016-11-11 08:51:16 内存使用 0.29 MiB
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <list>
#include <queue>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long LL;
LL fast_read()
{
    LL r;
    char c;
    bool sig = false;
    while(c = getchar())
    {
        if(c >= '0' && c <= '9')
        {
            r = c^0x30;
            break;
        }
    }
    while(isdigit(c = getchar()))
        r = (r<<3)+(r<<1)+(c^0x30);
    return r;
}
/*
23333333333333333
23333333333
2147483647
111111111111111111
233
998244353
1004535809
*/
int main()
{
    freopen("chenyao_momomo_expr.in", "r", stdin);
    freopen("chenyao_momomo_expr.out", "w", stdout);
    int T = (int)fast_read();
    while(T--)
    {
        LL a, b, p;
        a = fast_read();
        b = fast_read();
        p = fast_read();
        printf("%lld\n", ((a%p)+(b%p))%p);
    }
    return 0;
}