Editorial for !a002


記住 在沒有思路時使用題解,不要複製貼上代碼。請尊重題目和題解的作者。
在真正親自解開題目前提交官方題解的代碼是可以封禁的罪行。

作者: a002

參考code

#include<bits/stdc++.h>
#define BigIanXD ios_base::sync_with_stdio(false);cin.tie(0);
#define endl '\n'
#define int long long

using namespace std;

const int p = 1e9+7;
const int c = 1e6+10;

int pw(int a, int b) {
    if(b == 0) return 1;
    int tmp = pw(a, b>>1);
    if(b&1) return (tmp*tmp%p)*a%p;
    return tmp*tmp%p;
}

int f[c];

signed main()
{
    BigIanXD

    int k, n;cin >> k >> n;

    cout << (100+n/10) << ' ' << (100+n/10) << ' ' << (8+n/10);

}

留言

目前沒有評論。