結果

問題 No.51 やる気の問題
ユーザー MiyamonYMiyamonY
提出日時 2019-09-07 02:27:42
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 370 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 28,316 KB
最終ジャッジ日時 2024-06-25 01:51:20
合計ジャッジ時間 8,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
17,920 KB
testcase_01 AC 47 ms
17,920 KB
testcase_02 AC 34 ms
17,408 KB
testcase_03 AC 730 ms
21,504 KB
testcase_04 AC 250 ms
21,376 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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