結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー keidenkeiden
提出日時 2024-09-13 12:28:01
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 1,355 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 35,156 KB
最終ジャッジ日時 2024-09-13 12:28:11
合計ジャッジ時間 9,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
28,416 KB
testcase_01 AC 97 ms
28,544 KB
testcase_02 AC 99 ms
28,544 KB
testcase_03 AC 96 ms
28,416 KB
testcase_04 AC 96 ms
28,544 KB
testcase_05 AC 95 ms
28,416 KB
testcase_06 AC 98 ms
28,416 KB
testcase_07 AC 96 ms
28,416 KB
testcase_08 AC 94 ms
28,416 KB
testcase_09 AC 96 ms
28,544 KB
testcase_10 AC 95 ms
28,416 KB
testcase_11 AC 94 ms
28,416 KB
testcase_12 AC 96 ms
28,288 KB
testcase_13 AC 95 ms
28,416 KB
testcase_14 AC 96 ms
28,288 KB
testcase_15 AC 94 ms
28,416 KB
testcase_16 AC 98 ms
28,416 KB
testcase_17 AC 97 ms
28,544 KB
testcase_18 AC 102 ms
28,416 KB
testcase_19 AC 97 ms
28,416 KB
testcase_20 AC 793 ms
34,980 KB
testcase_21 AC 1,274 ms
35,072 KB
testcase_22 AC 1,283 ms
35,156 KB
testcase_23 AC 1,269 ms
34,936 KB
testcase_24 AC 1,355 ms
35,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(import
  (scheme base)
  (scheme read)
  (scheme write)
  (gauche base)
  (srfi 94)
)


(define yuki2752
  (let*
    (
      (alpha 26)
      (ratio 26)
      (mod998-const 998244353)
      (mod998-inverse (expt-mod (- alpha 1) (- mod998-const 2) mod998-const))
      (mod998 (lambda (x) (modulo x mod998-const)))
      (solver (lambda (x) (mod998 (* (mod998 (* alpha (- (expt-mod ratio x mod998-const) 1))) mod998-inverse)))))
    (let*
      ((n (read)))
      (do ((i 1 (+ i 1)))
        ((> i n) )
        (begin
          (write (solver (read)))
          (display "\n"))))))
0