結果
問題 |
No.857 素振り
|
ユーザー |
![]() |
提出日時 | 2020-04-13 22:30:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 1,000 ms |
コード長 | 138 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-25 11:09:33 |
合計ジャッジ時間 | 1,170 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() x,y,z=map(int,input().split()) ans=z if x<=z: ans-=1 if y<=z: ans-=1 print(ans)