結果

問題 No.557 点対称
ユーザー ttttanttttan
提出日時 2019-01-08 15:39:01
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 159,104 KB
実行使用メモリ 16,704 KB
最終ジャッジ日時 2024-11-24 00:42:40
合計ジャッジ時間 41,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll mod=1000000007;
int main(){
    ll n;cin>>n;
    if(n==1){
        cout<<2<<endl;
        return 0;
    }
    ll ans=1;
    for(ll i=0;i<n/2;i++){
        if(i==0)ans*=4;
        else ans*=5;
        ans%=mod;
    }
    if(n%2==1)ans*=3;
    ans%=mod;
    cout<<ans<<endl;
}
0