結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
a_ten
|
| 提出日時 | 2016-03-23 21:55:49 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 180 ms |
| コンパイル使用メモリ | 77,604 KB |
| 最終ジャッジ日時 | 2025-12-03 19:54:28 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 2 |
| other | MLE * 1 -- * 21 |
ソースコード
#coding:utf-8 from math import fabs N=input() X=map(int,raw_input().split()) res=[] for i,t in zip(range(N),X): for u in X[i+1:]: ans=fabs(t-u) if ans!=0: res.append(ans) print int(min(res))
a_ten