結果

問題 No.920 あかあお
ユーザー raven7959raven7959
提出日時 2021-10-16 20:48:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-09-17 19:32:09
合計ジャッジ時間 1,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,940 KB
testcase_01 AC 32 ms
52,400 KB
testcase_02 AC 34 ms
51,756 KB
testcase_03 AC 33 ms
52,956 KB
testcase_04 AC 31 ms
52,360 KB
testcase_05 AC 31 ms
52,564 KB
testcase_06 AC 30 ms
52,912 KB
testcase_07 AC 32 ms
52,632 KB
testcase_08 AC 31 ms
52,708 KB
testcase_09 AC 31 ms
52,864 KB
testcase_10 AC 29 ms
52,204 KB
testcase_11 AC 29 ms
52,704 KB
testcase_12 AC 30 ms
53,840 KB
testcase_13 AC 32 ms
52,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z=map(int,input().split())
if abs(x-y)<=z:
    print(max(x,y)+(z-abs(x-y))//2)
else:
    print(min(x,y)+z)
0