結果
問題 | No.487 2017 Calculation(2017の計算) |
ユーザー |
|
提出日時 | 2020-11-12 15:08:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 525 bytes |
コンパイル時間 | 1,599 ms |
コンパイル使用メモリ | 165,176 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 19:11:00 |
合計ジャッジ時間 | 2,255 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include <algorithm>#include <bits/stdc++.h>using namespace std;#define rep(i, n) for (int i = 0; i < (int)(n); i++)#define all(x) (x).begin(), (x).end()#define ll long long#define ld long double#define INF 1000000000000000000typedef pair<ll, ll> pll;ll calc(ll M) {ll base = 1;rep(i, 4034) {base *= 2017;base %= M;}return (base + 2017) % M;}int main() {cin.tie(0);ios::sync_with_stdio(false);ll M;cin >> M;cout << calc(M) << endl;return 0;}