結果
| 問題 |
No.857 素振り
|
| コンテスト | |
| ユーザー |
yama6k16
|
| 提出日時 | 2019-10-28 10:29:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 230 bytes |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 16,000 KB |
| 最終ジャッジ日時 | 2024-09-14 21:10:48 |
| 合計ジャッジ時間 | 2,684 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | WA * 2 TLE * 1 -- * 5 |
ソースコード
input_line = input().rstrip().split(" ")
X = int(input_line[0])
Y = int(input_line[1])
Z = int(input_line[2])
num = 0
for i in range(Z):
num = num + 1
if num >= X:
num = num - 1
elif num >= Z:
num = num - 2
print(num)
yama6k16