結果

問題 No.135 とりあえず1次元の問題
ユーザー RinRin
提出日時 2015-09-08 17:04:13
言語 Scheme
(Gauche-0.9.15)
結果
TLE  
実行時間 -
コード長 942 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2025-01-03 07:39:59
合計ジャッジ時間 31,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 23 ms
21,376 KB
testcase_02 AC 22 ms
43,264 KB
testcase_03 AC 24 ms
16,128 KB
testcase_04 AC 23 ms
16,256 KB
testcase_05 AC 24 ms
16,128 KB
testcase_06 AC 23 ms
16,000 KB
testcase_07 AC 24 ms
16,000 KB
testcase_08 AC 24 ms
16,000 KB
testcase_09 AC 26 ms
16,000 KB
testcase_10 AC 23 ms
16,000 KB
testcase_11 AC 22 ms
16,128 KB
testcase_12 AC 23 ms
16,256 KB
testcase_13 AC 24 ms
16,000 KB
testcase_14 AC 28 ms
16,256 KB
testcase_15 AC 25 ms
16,128 KB
testcase_16 AC 29 ms
16,256 KB
testcase_17 AC 30 ms
16,256 KB
testcase_18 AC 24 ms
16,128 KB
testcase_19 AC 29 ms
16,256 KB
testcase_20 AC 28 ms
16,128 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (System.out.println x)
  (begin
    (display x)
    (newline)
  )
)

(let (
      (N (read))
     )
  (let loop(
            (foo (read))
            (bar '())
           )
    (if (not (eof-object? foo))
        (loop (read) (cons foo bar))
        (let loop2(
                   (i 0)
                   (Min 0)
                   (ls (sort bar <))
                  )
          (if (and (not (= (list-ref ls i) (list-ref ls (+ i 1))))
                   (or (< (abs (- (list-ref ls i) (list-ref ls (+ i 1)))) Min) (= Min 0)))
              (if (= i (- (length ls) 2))
                  (System.out.println (abs (- (list-ref ls i) (list-ref ls (+ i 1)))))
                  (loop2 (+ i 1) (abs (- (list-ref ls i) (list-ref ls (+ i 1)))) ls)
              )
              (if (= i (- (length ls) 2))
                  (System.out.println Min)
                  (loop2 (+ i 1) Min ls)
              )
          )
        )
    )
  )
)
0