結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-09 10:43:13 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 112 ms / 5,000 ms |
| コード長 | 251 bytes |
| 記録 | |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 77,532 KB |
| 最終ジャッジ日時 | 2025-12-03 19:15:29 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#coding: utf-8 ##yuki_135 import sys x=int(raw_input()) s=[] s=map(int,raw_input().split()) s.sort() dif=10**6+1 for i in xrange(1,len(s)): if s[-1]==0: print 0 sys.exit() if s[i]==s[i-1]: continue d=s[i]-s[i-1] dif=min(d,dif) print dif