結果
| 問題 | No.857 素振り |
| コンテスト | |
| ユーザー |
simamumu
|
| 提出日時 | 2019-08-09 21:21:22 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 122 ms / 1,000 ms |
| + 387µs | |
| コード長 | 400 bytes |
| 記録 | |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 16,024 KB |
| 最終ジャッジ日時 | 2026-08-18 12:16:42 |
| 合計ジャッジ時間 | 3,068 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
from collections import defaultdict,deque
import sys,heapq,bisect,math,itertools,string,queue,copy,time
sys.setrecursionlimit(10**8)
INF = float('inf')
mod = 10**9+7
eps = 10**-7
def inp(): return int(input())
def inpl(): return list(map(int, input().split()))
def inpl_str(): return list(input().split())
X,Y,Z = inpl()
if Z < X:
print(Z)
elif X <= Z < Y:
print(Z-1)
else:
print(Z-2)
simamumu