結果

問題 No.557 点対称
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-29 18:21:28
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 437 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 197,372 KB
実行使用メモリ 8,756 KB
最終ジャッジ日時 2023-08-11 04:07:42
合計ジャッジ時間 5,485 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,756 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int mpow(int a,int b,int m) {
    int ans=1;
    while (b) {
        if (b&1)
            ans=ans*(ll)a%m;
        a=(ll)a*a%m;
        b>>=1;
    }
    return ans;
}

int main() {
    ll n;
    cin>>n;
    if (n==1)
        cout<<3<<endl;
    else {
        int mod=1e9+7;
        int a=n%2?12:4;
        cout<<(ll)a*mpow(5,n/2-1,mod)%mod<<endl;
    }
    return 0;
}
0