結果

問題 No.857 素振り
ユーザー NagisaNagisa
提出日時 2019-08-09 22:06:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 133 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 53,172 KB
最終ジャッジ日時 2024-07-19 12:06:37
合計ジャッジ時間 1,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,000 KB
testcase_01 AC 38 ms
52,772 KB
testcase_02 AC 38 ms
52,452 KB
testcase_03 AC 38 ms
51,812 KB
testcase_04 AC 39 ms
52,628 KB
testcase_05 AC 38 ms
53,172 KB
testcase_06 AC 38 ms
51,288 KB
testcase_07 AC 38 ms
51,992 KB
testcase_08 AC 38 ms
52,788 KB
testcase_09 AC 38 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X, Y, Z = map(int,input().split())
if Y <= Z:
    print(max(0,Z-2))
elif X <= Z < Y:
    print(max(0,Z-1))
else:
    print(max(0,Z))
0