結果

問題 No.135 とりあえず1次元の問題
ユーザー MaboyMaboy
提出日時 2021-06-15 23:01:30
言語 Swift
(5.10.0)
結果
RE  
実行時間 -
コード長 218 bytes
コンパイル時間 6,704 ms
コンパイル使用メモリ 139,012 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-06-08 15:29:38
合計ジャッジ時間 8,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
14,848 KB
testcase_01 AC 9 ms
9,344 KB
testcase_02 AC 9 ms
9,344 KB
testcase_03 RE -
testcase_04 AC 9 ms
9,472 KB
testcase_05 AC 9 ms
9,344 KB
testcase_06 AC 8 ms
9,472 KB
testcase_07 AC 8 ms
9,472 KB
testcase_08 AC 8 ms
9,344 KB
testcase_09 AC 8 ms
9,472 KB
testcase_10 AC 8 ms
9,472 KB
testcase_11 AC 9 ms
9,472 KB
testcase_12 AC 9 ms
9,472 KB
testcase_13 AC 8 ms
9,344 KB
testcase_14 AC 9 ms
9,472 KB
testcase_15 AC 7 ms
9,600 KB
testcase_16 AC 9 ms
9,472 KB
testcase_17 AC 8 ms
9,472 KB
testcase_18 AC 8 ms
9,472 KB
testcase_19 AC 8 ms
9,344 KB
testcase_20 AC 8 ms
9,472 KB
testcase_21 AC 71 ms
14,476 KB
testcase_22 AC 80 ms
14,592 KB
evil01.txt AC 82 ms
14,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let N = Int(readLine()!)
var X = readLine()?.split(separator: " ").map{Int($0)!}
var S:Set = Set<Int>(X!)
X = Array(S).sorted()
var L = [Int]()

for i in 0...X!.count - 2{
    L += [X![i + 1] - X![i]]
}
print(L.min()!)
0