結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
a_ten
|
| 提出日時 | 2016-03-23 21:55:49 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 80,768 KB |
| 実行使用メモリ | 1,342,732 KB |
| 最終ジャッジ日時 | 2026-07-18 04:22:58 |
| 合計ジャッジ時間 | 8,873 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | MLE * 1 -- * 1 |
| 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