結果

問題 No.2233 Average
ユーザー wanuiwanui
提出日時 2023-03-03 21:55:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,459 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 201,368 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-18 01:55:00
合計ジャッジ時間 5,264 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 172 ms
4,348 KB
testcase_09 AC 260 ms
4,348 KB
testcase_10 AC 148 ms
4,348 KB
testcase_11 AC 145 ms
4,348 KB
testcase_12 AC 127 ms
4,348 KB
testcase_13 AC 30 ms
4,348 KB
testcase_14 AC 145 ms
4,348 KB
testcase_15 AC 197 ms
4,348 KB
testcase_16 AC 57 ms
4,348 KB
testcase_17 AC 72 ms
4,348 KB
testcase_18 AC 296 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// clang-format off
using namespace std; using ll=long long; using ull=unsigned long long; using pll=pair<ll,ll>; const ll INF=4e18;
void print0(){}; template<typename H,typename... T> void print0(H h,T... t){cout<<h;print0(t...);}
void print(){print0("\n");}; template<typename H,typename... T>void print(H h,T... t){print0(h);if(sizeof...(T)>0)print0(" ");print(t...);}
void perr0(){}; template<typename H,typename... T> void perr0(H h,T... t){cerr<<h;perr0(t...);}
void perr(){perr0("\n");}; template<typename H,typename... T>void perr(H h,T... t){perr0(h);if(sizeof...(T)>0)perr0(" ");perr(t...);}
void ioinit() { cout<<fixed<<setprecision(15); cerr<<fixed<<setprecision(6); ios_base::sync_with_stdio(0); cin.tie(0); }
#define debug1(a) { cerr<<#a<<":"<<a<<endl; }
#define debug2(a,b) { cerr<<#a<<":"<<a<<" "<<#b<<":"<<b<<endl; }
#define debug3(a,b,c) { cerr<<#a<<":"<<a<<" "<<#b<<":"<<b<<" "<<#c<<":"<<c<<endl; }
#define debug4(a,b,c,d) { cerr<<#a<<":"<<a<<" "<<#b<<":"<<b<<" "<<#c<<":"<<c<<" "<<#d<<":"<<d<<endl; }
// clang-format on

void solve() {
    ll a, b, c, k;
    cin >> a >> b >> c >> k;
    k = min(k, 1000ll);
    for (ll i = 0; i < k; i++) {
        ll na = (b + c) / 2;
        ll nb = (a + c) / 2;
        ll nc = (a + b) / 2;
        a = na;
        b = nb;
        c = nc;
    }
    print(a + b + c);
}
int main() {
    ioinit();
    ll T;
    cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}
0