結果

問題 No.2233 Average
ユーザー vwxyzvwxyz
提出日時 2024-08-15 11:58:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,568 KB
最終ジャッジ日時 2024-08-15 11:58:43
合計ジャッジ時間 7,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
10,496 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 24 ms
10,496 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 1,985 ms
10,624 KB
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,578 ms
10,752 KB
testcase_15 TLE -
testcase_16 AC 617 ms
10,624 KB
testcase_17 AC 771 ms
10,624 KB
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
    a,b,c,K=map(int,input().split())
    for k in range(min(K,50)):
        a,b,c=(b+c)//2,(c+a)//2,(a+b)//2
    ans=a+b+c
    print(ans)
0