結果
問題 |
No.3163 [Cherry 7th Tune N] Draft
|
ユーザー |
👑 ![]() |
提出日時 | 2024-04-14 17:15:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 249 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,420 KB |
実行使用メモリ | 54,016 KB |
最終ジャッジ日時 | 2025-05-30 21:00:36 |
合計ジャッジ時間 | 1,037 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
def solve(): A, B, C, D, E = map(int, input().split()) X = max(A, B, C, D, E) Y = min(A, B, C, D, E) return X - Y #================================================== T = int(input()) print(*[solve() for _ in range(T)], sep = "\n")