結果
問題 | No.487 2017 Calculation(2017の計算) |
ユーザー | AREIDO2 |
提出日時 | 2017-06-30 17:34:56 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 276 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 57,652 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 18:40:39 |
合計ジャッジ時間 | 1,049 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include<iostream> #include<string> #include<vector> #include<typeinfo> using namespace std; int main(){ long long m,x=2017,x2; cin >> m; x=(x * x) % m; x2 = x; for(int i=0;i<2016;i++) x2 = (x2 * x) % m; x2 = (x2+2017)%m; cout << x2 << "\n"; return 0; }