結果

問題 No.857 素振り
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-08 11:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 1,000 ms
コード長 106 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 87,184 KB
実行使用メモリ 71,400 KB
最終ジャッジ日時 2023-08-26 16:02:58
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,292 KB
testcase_01 AC 62 ms
71,396 KB
testcase_02 AC 65 ms
71,096 KB
testcase_03 AC 62 ms
71,400 KB
testcase_04 AC 61 ms
71,368 KB
testcase_05 AC 62 ms
71,312 KB
testcase_06 AC 63 ms
71,060 KB
testcase_07 AC 61 ms
71,268 KB
testcase_08 AC 62 ms
71,348 KB
testcase_09 AC 63 ms
71,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z = map(int,input().split())
ans = z
if z >= x:
    ans -= 1
if z >= y:
    ans -= 1
print(max(ans,0))
0