結果

問題 No.1578 A × B × C
ユーザー n_getn_get
提出日時 2021-08-13 14:56:06
言語 Scheme
(Gauche-0.9.14)
結果
MLE  
実行時間 -
コード長 509 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 819,716 KB
最終ジャッジ日時 2024-10-03 05:15:58
合計ジャッジ時間 2,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 MLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
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 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (expt-mod a n)
  (let loop ([k 1] [ak a] [ls '()]) ;; a^1 a^2 a^4のリスト
    (if (<= k n)
        (loop (* k 2) (remainder (* ak ak) 1000000007)
              (cons (cons k ak) ls))
        (let loop2 ([ls ls] [n n] [an 1])
          (cond
           [(zero? n) an]
           [(> (caar ls) n) (loop2 (cdr ls) n an)]
           [else (loop2 (cdr ls) (- n (caar ls))
                        (remainder (* an (cdar ls)) 1000000007))])))))
(print (expt-mod (* (read) (read) (read)) (expt 2 (read))))
0