結果

問題 No.2815 Smaller than all
ユーザー keidenkeiden
提出日時 2024-09-29 19:48:02
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-09-29 19:48:11
合計ジャッジ時間 8,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
15,872 KB
testcase_01 AC 20 ms
15,872 KB
testcase_02 AC 40 ms
17,152 KB
testcase_03 AC 37 ms
17,024 KB
testcase_04 AC 140 ms
22,016 KB
testcase_05 AC 21 ms
15,872 KB
testcase_06 AC 21 ms
15,872 KB
testcase_07 AC 20 ms
15,872 KB
testcase_08 AC 221 ms
22,144 KB
testcase_09 AC 192 ms
22,272 KB
testcase_10 AC 187 ms
22,400 KB
testcase_11 AC 189 ms
22,144 KB
testcase_12 AC 186 ms
22,400 KB
testcase_13 AC 204 ms
22,144 KB
testcase_14 AC 191 ms
22,144 KB
testcase_15 AC 189 ms
22,272 KB
testcase_16 AC 188 ms
22,272 KB
testcase_17 AC 178 ms
22,272 KB
testcase_18 AC 181 ms
22,400 KB
testcase_19 AC 196 ms
22,272 KB
testcase_20 AC 178 ms
22,144 KB
testcase_21 AC 186 ms
22,272 KB
testcase_22 AC 184 ms
22,144 KB
testcase_23 AC 171 ms
22,272 KB
testcase_24 AC 185 ms
22,272 KB
testcase_25 AC 188 ms
22,144 KB
testcase_26 AC 199 ms
22,144 KB
testcase_27 AC 190 ms
22,144 KB
testcase_28 AC 203 ms
22,144 KB
testcase_29 AC 193 ms
22,144 KB
testcase_30 AC 198 ms
22,400 KB
testcase_31 AC 186 ms
22,144 KB
testcase_32 AC 20 ms
16,128 KB
testcase_33 AC 189 ms
22,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define yuki2815
  (let* ((n (read))
         (ax (make-u32vector n)))
    (dotimes (i n) (u32vector-set! ax i (read)))
    (let loop-right ((r 0))
      (if (and (< (+ r 1) n) (<= (u32vector-ref ax (+ r 1)) (u32vector-ref ax r)))
        (loop-right (+ r 1))
        (let loop-left ((l r))
          (if (and (< 0 l) (equal? (u32vector-ref ax r) (u32vector-ref ax (- l 1))))
            (loop-left (- l 1))
            (print (- (+ r 1) l))))))))
0