結果

問題 No.51 やる気の問題
ユーザー MiyamonYMiyamonY
提出日時 2019-09-07 02:28:30
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 358 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-25 01:51:57
合計ジャッジ時間 2,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,024 KB
testcase_01 AC 33 ms
17,024 KB
testcase_02 AC 25 ms
16,000 KB
testcase_03 AC 34 ms
17,280 KB
testcase_04 AC 33 ms
17,024 KB
testcase_05 AC 60 ms
17,664 KB
testcase_06 AC 54 ms
17,152 KB
testcase_07 AC 54 ms
17,152 KB
testcase_08 AC 48 ms
17,280 KB
testcase_09 AC 71 ms
17,920 KB
testcase_10 AC 50 ms
17,408 KB
testcase_11 AC 48 ms
17,152 KB
testcase_12 AC 55 ms
17,152 KB
testcase_13 AC 56 ms
17,152 KB
testcase_14 AC 52 ms
17,152 KB
testcase_15 AC 63 ms
17,664 KB
testcase_16 AC 46 ms
17,152 KB
testcase_17 AC 35 ms
17,024 KB
testcase_18 AC 65 ms
17,664 KB
testcase_19 AC 65 ms
17,920 KB
testcase_20 AC 54 ms
17,152 KB
testcase_21 AC 35 ms
17,024 KB
testcase_22 AC 70 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (read-number)
  (string->number (read-line)))

(define (generate n)
  (define m n)
  (lambda () (let1 k m
	      (set! m (- m 1))
	      k)))

(let* ((w (read-number))
       (d (read-number)))
  (define gen (generate d))

  (print (let loop ((rem w))
	   (let1 n (gen)
		 (cond ((= n 1) rem)
		       (else
			(loop (- rem (div rem (* n n))))))))))
0