結果

問題 No.557 点対称
ユーザー Bantako
提出日時 2017-08-14 01:04:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 166,064 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 09:24:23
合計ジャッジ時間 2,427 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:12:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   12 | main(){
      | ^~~~

ソースコード

diff #

#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;
}
0