結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
28,416 KB
testcase_01 AC 90 ms
28,416 KB
testcase_02 AC 91 ms
28,416 KB
testcase_03 AC 93 ms
28,416 KB
testcase_04 AC 91 ms
28,544 KB
testcase_05 AC 91 ms
28,416 KB
testcase_06 AC 91 ms
28,416 KB
testcase_07 AC 97 ms
28,416 KB
testcase_08 AC 91 ms
28,416 KB
testcase_09 AC 90 ms
28,416 KB
testcase_10 AC 90 ms
28,416 KB
testcase_11 AC 92 ms
28,288 KB
testcase_12 AC 93 ms
28,416 KB
testcase_13 AC 89 ms
28,288 KB
testcase_14 AC 89 ms
28,544 KB
testcase_15 AC 91 ms
28,416 KB
testcase_16 AC 92 ms
28,544 KB
testcase_17 AC 91 ms
28,416 KB
testcase_18 AC 93 ms
28,544 KB
testcase_19 AC 100 ms
28,416 KB
testcase_20 AC 777 ms
35,008 KB
testcase_21 AC 1,276 ms
34,944 KB
testcase_22 AC 1,296 ms
35,040 KB
testcase_23 AC 1,278 ms
34,936 KB
testcase_24 AC 1,365 ms
34,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.base)
(use scheme.read)
(use scheme.write)
(use gauche.base)
(use 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