結果

問題 No.1448 和差算
ユーザー ytqm3ytqm3
提出日時 2021-03-21 16:46:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 200,808 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-11-30 15:13:35
合計ジャッジ時間 84,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const long mod=1000000007;

long modpow(long a,long b){
  long res=1;
  for(int i=0;i<b;i++){
    res=res*a%mod;
  }
  return res;
}

long f(long a,long b,long N){
  for(int i=0;i<N;i++){
    a-=b;b+=a+b;
  }
  return a+b;
}

int main(){
  long A,B,C,D,N,ans;
  cin>>A>>B>>C>>D>>N;
  ans=max({f(A,C,N%8),f(A,D,N%8),f(B,C,N%8),f(B,D,N%8)})%mod*modpow(16,N/8)%mod;
  if(ans<0){
    cout<<ans+mod<<endl;
  }
  else{
    cout<<ans<<endl;
  }
}
0