結果

問題 No.135 とりあえず1次元の問題
ユーザー diginatudiginatu
提出日時 2015-01-26 00:07:37
言語 D
(dmd 2.106.1)
結果
RE  
実行時間 -
コード長 288 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 112,524 KB
実行使用メモリ 5,380 KB
最終ジャッジ日時 2024-06-12 02:05:36
合計ジャッジ時間 1,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
5,368 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 RE -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 35 ms
5,380 KB
evil01.txt AC 28 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.conv, std.math, std.string, std.range, std.array,
       std.algorithm;

void main(){
  readln();
  auto t = readln().strip().split().map!(to!int)().array().sort().uniq().array();
  auto u = t[1..$];
  auto v = t[0..$-1];
  u[] -= v[];
  u.reduce!min().writeln();
}
0