結果

問題 No.857 素振り
ユーザー pypypymipypypymi
提出日時 2022-01-26 11:23:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 53,756 KB
最終ジャッジ日時 2024-06-02 03:23:07
合計ジャッジ時間 1,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,148 KB
testcase_01 AC 34 ms
52,700 KB
testcase_02 AC 33 ms
52,884 KB
testcase_03 AC 33 ms
52,880 KB
testcase_04 AC 33 ms
52,708 KB
testcase_05 AC 32 ms
52,352 KB
testcase_06 AC 32 ms
52,484 KB
testcase_07 AC 32 ms
51,680 KB
testcase_08 AC 31 ms
52,484 KB
testcase_09 AC 31 ms
53,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z = map(int,input().split())
if z>=x and z>=y:
    print(z-2)
elif z>=x and z<y:
    print(z-1)
else :
    print(z)
0