結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー hebiyanhebiyan
提出日時 2017-05-23 14:48:20
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-09-19 11:39:22
合計ジャッジ時間 1,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

(define (powmod b p m)
  (cond
   ((zero? p) 1)
   ((zero? b) 0)
   (else
    (if (zero? (mod p 2))
        (letrec ((prev (powmod b (div p 2) m)))
          (mod (* prev prev) m))
        (letrec ((prev (powmod b (- p 1) m)))
          (mod (* b prev) m))))))

(define (answer m)
  (mod (+ (mod 2017 m)
          (powmod (* 2017 2017) 2017 m))
       m))
       
(print (answer (read)))
0