結果

問題 No.888 約数の総和
ユーザー MiyamonYMiyamonY
提出日時 2019-09-29 00:58:01
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 118,292 KB
最終ジャッジ日時 2024-10-03 04:21:54
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,024 KB
testcase_01 AC 30 ms
17,024 KB
testcase_02 AC 29 ms
17,024 KB
testcase_03 AC 22 ms
15,872 KB
testcase_04 AC 27 ms
17,024 KB
testcase_05 AC 28 ms
17,024 KB
testcase_06 AC 27 ms
17,024 KB
testcase_07 AC 27 ms
17,024 KB
testcase_08 AC 26 ms
17,024 KB
testcase_09 AC 27 ms
17,024 KB
testcase_10 AC 26 ms
17,024 KB
testcase_11 AC 26 ms
17,024 KB
testcase_12 AC 26 ms
17,024 KB
testcase_13 AC 26 ms
17,152 KB
testcase_14 AC 26 ms
17,024 KB
testcase_15 AC 27 ms
17,024 KB
testcase_16 AC 33 ms
17,280 KB
testcase_17 AC 27 ms
17,152 KB
testcase_18 AC 327 ms
118,292 KB
testcase_19 AC 267 ms
91,800 KB
testcase_20 AC 179 ms
69,720 KB
testcase_21 AC 308 ms
115,696 KB
testcase_22 AC 304 ms
116,876 KB
testcase_23 AC 40 ms
19,968 KB
testcase_24 AC 156 ms
56,660 KB
testcase_25 AC 176 ms
67,256 KB
testcase_26 AC 180 ms
69,476 KB
testcase_27 AC 263 ms
92,900 KB
testcase_28 AC 273 ms
96,236 KB
testcase_29 AC 282 ms
97,600 KB
testcase_30 AC 284 ms
101,152 KB
testcase_31 AC 297 ms
109,760 KB
testcase_32 AC 309 ms
117,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

;;; File:  main.scm
;; Author: ymiyamoto
;;
;; Created on Sun Sep 29 00:48:50 2019
;;
(define-syntax read-number
  (syntax-rules ()
    ((_ nums)
     (define-values nums
       (apply values (map string->number (string-split (read-line) #\space)))))))

(define-syntax read-numbers
  (syntax-rules ()
    ((_ as)
     (define as (map string->number (string-split (read-line) #\space))))
    ((_ as n)
     (define as (map (lambda (_) (map string->number (string-split (read-line) #\space))) (iota n))))))

(define-syntax prlist
  (syntax-rules ()
    ((_ lis)
     (print (string-join (map number->string lis) " ")))))

(define-syntax 1+ (syntax-rules () ((_ x) (+ x 1))))

(define-syntax 1- (syntax-rules () ((_ x) (- x 1))))

(define MOD 1000000007)

(define (solve)
  (read-number (n))

  (print (let loop ((i 1))
	   (cond
	    ((= (* i i) n) (+ i (loop (1+ i))))
	    ((< (* i i) n) (+ (if (= (modulo n i) 0) (+ i (div n i)) 0) (loop (1+ i))))
	    (else 0)))))

(solve)
0