結果
| 問題 | No.2233 Average |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-09-03 22:04:28 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 207 bytes |
| 記録 | |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 95,444 KB |
| 実行使用メモリ | 84,480 KB |
| 最終ジャッジ日時 | 2026-09-03 22:04:43 |
| 合計ジャッジ時間 | 6,349 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 18 |
ソースコード
from sys import stdin
input = stdin.readline
for _ in range(int(input())):
a, b, c, K = map(int, input().split())
if a%2+b%2+c%2 < 3:
print(a+b+c-a%2-b%2-c%2)
else:
print(a+b+c)
detteiuu