結果
問題 | No.857 素振り |
ユーザー | simamumu |
提出日時 | 2019-08-09 21:21:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 35 ms / 1,000 ms |
コード長 | 400 bytes |
コンパイル時間 | 97 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-07-19 10:54:19 |
合計ジャッジ時間 | 1,041 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
11,392 KB |
testcase_01 | AC | 32 ms
11,392 KB |
testcase_02 | AC | 31 ms
11,392 KB |
testcase_03 | AC | 32 ms
11,392 KB |
testcase_04 | AC | 31 ms
11,520 KB |
testcase_05 | AC | 32 ms
11,264 KB |
testcase_06 | AC | 31 ms
11,392 KB |
testcase_07 | AC | 33 ms
11,264 KB |
testcase_08 | AC | 34 ms
11,392 KB |
testcase_09 | AC | 32 ms
11,520 KB |
ソースコード
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)