結果

問題 No.677 10^Nの約数
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-05-07 23:24:11
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 28 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-06-28 02:22:55
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
19,072 KB
testcase_01 AC 46 ms
18,816 KB
testcase_02 AC 48 ms
18,944 KB
testcase_03 AC 49 ms
18,816 KB
testcase_04 AC 50 ms
18,816 KB
testcase_05 AC 47 ms
18,816 KB
testcase_06 AC 48 ms
18,816 KB
testcase_07 AC 47 ms
18,944 KB
testcase_08 AC 46 ms
18,816 KB
testcase_09 AC 46 ms
18,816 KB
testcase_10 AC 47 ms
18,816 KB
testcase_11 AC 46 ms
18,816 KB
testcase_12 AC 46 ms
18,944 KB
testcase_13 AC 46 ms
18,816 KB
testcase_14 AC 45 ms
18,944 KB
testcase_15 AC 46 ms
19,072 KB
testcase_16 AC 46 ms
18,816 KB
testcase_17 AC 47 ms
18,816 KB
testcase_18 AC 47 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use util.combinations)

(define (solve n)
  (sort
    (map
      (lambda (lst) (* (expt 2 (car lst)) (expt 5 (cadr lst))))
      (cartesian-product (list (iota (+ n 1)) (iota (+ n 1)))))))

(define (MAIN)
  (let ((n (string->number (read-line))))
    (for-each print (solve n))))

(MAIN)
0