結果

問題 No.135 とりあえず1次元の問題
ユーザー diginatudiginatu
提出日時 2015-01-26 00:17:35
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 114,712 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 02:05:39
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 16 ms
6,944 KB
testcase_22 AC 35 ms
6,940 KB
evil01.txt AC 29 ms
6,940 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];
  if(u.empty) {
    writeln("0");
    return;
  }
  u[] -= v[];
  u.reduce!min().writeln();
}
0