結果

問題 No.920 あかあお
ユーザー TS_KAsTS_KAs
提出日時 2019-11-08 21:30:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 87,172 KB
実行使用メモリ 71,660 KB
最終ジャッジ日時 2023-10-13 03:33:16
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,216 KB
testcase_01 AC 73 ms
71,396 KB
testcase_02 AC 75 ms
71,340 KB
testcase_03 AC 74 ms
71,208 KB
testcase_04 AC 75 ms
71,252 KB
testcase_05 AC 74 ms
71,344 KB
testcase_06 WA -
testcase_07 AC 74 ms
71,252 KB
testcase_08 AC 73 ms
71,080 KB
testcase_09 AC 74 ms
71,192 KB
testcase_10 AC 75 ms
71,328 KB
testcase_11 AC 74 ms
71,112 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y, Z = map(int, input().split())
print(max(X, Y) + ((Z - abs(X-Y))//2))
0