結果
| 問題 | No.2233 Average |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-09-03 22:22:46 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 148 ms / 2,000 ms |
| + 309µs | |
| コード長 | 248 bytes |
| 記録 | |
| コンパイル時間 | 256 ms |
| コンパイル使用メモリ | 96,328 KB |
| 実行使用メモリ | 84,480 KB |
| 最終ジャッジ日時 | 2026-09-03 22:22:51 |
| 合計ジャッジ時間 | 4,360 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 18 |
ソースコード
from sys import stdin
input = stdin.readline
for _ in range(int(input())):
a, b, c, K = map(int, input().split())
for _ in range(min(K, 101)):
na, nb, nc = (b+c)//2, (c+a)//2, (a+b)//2
a, b, c = na, nb, nc
print(a+b+c)
detteiuu