結果

問題 No.836 じょうよ
ユーザー ikdikd
提出日時 2019-08-01 20:53:27
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 169 ms / 1,000 ms
コード長 164 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 5,332 KB
実行使用メモリ 17,496 KB
最終ジャッジ日時 2023-09-18 17:59:19
合計ジャッジ時間 5,181 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
15,528 KB
testcase_01 AC 26 ms
12,632 KB
testcase_02 AC 26 ms
12,616 KB
testcase_03 AC 26 ms
12,720 KB
testcase_04 AC 27 ms
12,608 KB
testcase_05 AC 26 ms
12,644 KB
testcase_06 AC 25 ms
12,828 KB
testcase_07 AC 26 ms
12,684 KB
testcase_08 AC 26 ms
12,612 KB
testcase_09 AC 26 ms
12,644 KB
testcase_10 AC 26 ms
12,596 KB
testcase_11 AC 40 ms
13,772 KB
testcase_12 AC 45 ms
15,788 KB
testcase_13 AC 33 ms
13,776 KB
testcase_14 AC 27 ms
12,936 KB
testcase_15 AC 40 ms
13,988 KB
testcase_16 AC 131 ms
15,572 KB
testcase_17 AC 123 ms
15,352 KB
testcase_18 AC 32 ms
13,600 KB
testcase_19 AC 47 ms
13,860 KB
testcase_20 AC 83 ms
15,364 KB
testcase_21 AC 30 ms
13,192 KB
testcase_22 AC 80 ms
15,528 KB
testcase_23 AC 140 ms
15,584 KB
testcase_24 AC 33 ms
13,756 KB
testcase_25 AC 70 ms
15,360 KB
testcase_26 AC 27 ms
13,048 KB
testcase_27 AC 29 ms
13,084 KB
testcase_28 AC 40 ms
13,844 KB
testcase_29 AC 29 ms
13,112 KB
testcase_30 AC 28 ms
13,140 KB
testcase_31 AC 43 ms
13,784 KB
testcase_32 AC 41 ms
13,800 KB
testcase_33 AC 29 ms
13,176 KB
testcase_34 AC 41 ms
13,780 KB
testcase_35 AC 41 ms
13,784 KB
testcase_36 AC 92 ms
15,552 KB
testcase_37 AC 84 ms
15,364 KB
testcase_38 AC 112 ms
17,496 KB
testcase_39 AC 100 ms
15,516 KB
testcase_40 AC 169 ms
17,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env gosh

(let ([l (read)] [r (read)] [n (read)])
  (dotimes (i n)
    (display (- (div (- r i) n) 
                (div (- l i 1) n)))
    (newline)))
0