結果
| 問題 | No.557 点対称 |
| コンテスト | |
| ユーザー |
Bantako
|
| 提出日時 | 2017-08-14 01:04:12 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 411 bytes |
| 記録 | |
| コンパイル時間 | 1,495 ms |
| コンパイル使用メモリ | 179,904 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-30 18:30:40 |
| 合計ジャッジ時間 | 1,939 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
コンパイルメッセージ
main.cpp:12:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
12 | main(){
| ^~~~
ソースコード
#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int INF = 1e9;
int MOD = 1e9+7;
ll powmod(ll x,ll n){
if(n == 0)return 1;
ll ans = powmod(x*x%MOD,n/2);
if(n % 2 == 1)ans = ans * x % MOD;
return ans;
}
main(){
ll N;
cin >> N;
if(N == 1)cout << 2 << endl;
else if(N%2 == 1)cout << 12*powmod(5,N/2-1)%MOD << endl;
else cout << 4*powmod(5,N/2-1)%MOD << endl;
}
Bantako