結果

問題 No.487 2017 Calculation(2017の計算)
コンテスト
ユーザー めうめう🎒
提出日時 2017-03-01 18:56:15
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 597 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 699 ms
コンパイル使用メモリ 96,324 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2026-03-05 17:15:56
合計ジャッジ時間 1,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <string.h>
#include <vector>
using namespace std;

#define ll long long
#define INF (1 << 30)
#define INFLL (1LL << 60)

#define FOR(i,a,b) for(ll i = (a);i<(b);i++)
#define REP(i,a) FOR(i,0,(a))
#define MP make_pair

int main() {
	int m;
	cin >> m;
	ll ans = 1, times = (2017 * 2017) % m;
	for(int i = 0;i < 2017;i++){
		ans *= times;
		ans %= m;
	}
	ans += 2017;
	ans %= m;
	cout << ans << endl;
	return 0;
}
0