結果

問題 No.920 あかあお
ユーザー convexineqconvexineq
提出日時 2021-02-13 20:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 63 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 71,652 KB
最終ジャッジ日時 2023-09-28 06:09:33
合計ジャッジ時間 1,896 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,304 KB
testcase_01 AC 62 ms
71,592 KB
testcase_02 AC 63 ms
71,652 KB
testcase_03 AC 63 ms
71,116 KB
testcase_04 AC 64 ms
71,332 KB
testcase_05 AC 66 ms
71,644 KB
testcase_06 AC 64 ms
71,316 KB
testcase_07 AC 63 ms
71,600 KB
testcase_08 AC 62 ms
71,444 KB
testcase_09 AC 62 ms
71,500 KB
testcase_10 AC 64 ms
71,600 KB
testcase_11 AC 63 ms
71,528 KB
testcase_12 AC 64 ms
71,416 KB
testcase_13 AC 63 ms
71,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z = map(int,input().split())
print(min(x+z,y+z,(x+y+z)//2))
0