結果

問題 No.16 累乗の加算
ユーザー MiyamonYMiyamonY
提出日時 2019-09-05 11:14:48
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-06-11 00:11:40
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,024 KB
testcase_01 AC 28 ms
17,024 KB
testcase_02 AC 35 ms
17,408 KB
testcase_03 AC 27 ms
17,152 KB
testcase_04 AC 30 ms
17,024 KB
testcase_05 AC 28 ms
17,024 KB
testcase_06 AC 34 ms
17,280 KB
testcase_07 AC 34 ms
17,408 KB
testcase_08 AC 34 ms
17,152 KB
testcase_09 AC 36 ms
17,152 KB
testcase_10 AC 34 ms
17,280 KB
testcase_11 AC 27 ms
17,024 KB
testcase_12 AC 34 ms
17,408 KB
testcase_13 AC 28 ms
17,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define MOD 1000003)

(define (pow x n)
  (define y (mod (* x x) MOD))
  (define m (div n 2))

  (cond ((= n 0) 1)
	((= (mod n 2) 1) (mod (* x (pow y m)) MOD))
	(else
	 (pow y m))))

(let* ((pair (map string->number (string-split (read-line) #\space)))
       (x (car pair))
       (arr (map string->number (string-split (read-line) #\space))))

  (print (fold (lambda (n s) (mod (+ (pow x n) s) MOD)) 0 arr)))
0