結果

問題 No.2233 Average
ユーザー siro53siro53
提出日時 2023-03-03 21:42:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,820 KB
最終ジャッジ日時 2024-09-17 22:36:09
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

def main():
    a, b, c, K = map(int, input().split())

    while K > 0:
        if a % 2 == 0 and b % 2 == 0 and c % 2 == 0:
            break
        a, b, c = (b + c) // 2, (c + a) // 2, (a + b) // 2
        K -= 1
    
    print(a + b + c)

if __name__ == '__main__':
    T = int(input())
    for _ in range(T):
        main()

0