結果
| 問題 |
No.965 門松列が嫌い
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-01-13 20:43:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 37 ms / 1,000 ms |
| コード長 | 376 bytes |
| コンパイル時間 | 123 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-21 16:38:02 |
| 合計ジャッジ時間 | 1,017 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
# coding: utf-8 # Your code here! import sys sys.setrecursionlimit(10**6) readline = sys.stdin.readline read = sys.stdin.read import datetime #n = int(input()) #n,k = [int(i) for i in readline().split()] #a = [int(i) for i in readline().split()] abc = [int(i) for i in input().split()] s = sorted(abc) ans = min(s[1]-s[0],s[2]-s[1]) if abc[1] == s[1]: ans = 0 print(ans)
convexineq