結果

問題 No.857 素振り
ユーザー kohei2019kohei2019
提出日時 2022-05-04 12:31:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 66 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-07-03 14:54:26
合計ジャッジ時間 1,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,836 KB
testcase_01 AC 36 ms
51,748 KB
testcase_02 AC 36 ms
52,188 KB
testcase_03 AC 35 ms
52,024 KB
testcase_04 AC 36 ms
52,284 KB
testcase_05 AC 36 ms
53,616 KB
testcase_06 AC 37 ms
52,208 KB
testcase_07 AC 37 ms
52,760 KB
testcase_08 AC 36 ms
53,536 KB
testcase_09 AC 36 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,Z = map(int,input().split())
ans = Z-(X<=Z)-(Y<=Z)
print(ans)
0