結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー keidenkeiden
提出日時 2024-09-13 12:25:24
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 1,853 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 35,056 KB
最終ジャッジ日時 2024-09-13 12:25:38
合計ジャッジ時間 13,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
28,416 KB
testcase_01 AC 96 ms
28,544 KB
testcase_02 AC 96 ms
28,544 KB
testcase_03 AC 100 ms
28,544 KB
testcase_04 AC 94 ms
28,416 KB
testcase_05 AC 95 ms
28,544 KB
testcase_06 AC 99 ms
28,416 KB
testcase_07 AC 93 ms
28,288 KB
testcase_08 AC 93 ms
28,288 KB
testcase_09 AC 95 ms
28,288 KB
testcase_10 AC 95 ms
28,288 KB
testcase_11 AC 95 ms
28,416 KB
testcase_12 AC 95 ms
28,416 KB
testcase_13 AC 95 ms
28,416 KB
testcase_14 AC 95 ms
28,416 KB
testcase_15 AC 95 ms
28,544 KB
testcase_16 AC 95 ms
28,544 KB
testcase_17 AC 98 ms
28,544 KB
testcase_18 AC 94 ms
28,416 KB
testcase_19 AC 94 ms
28,544 KB
testcase_20 AC 1,102 ms
35,056 KB
testcase_21 AC 1,789 ms
34,920 KB
testcase_22 AC 1,773 ms
34,884 KB
testcase_23 AC 1,798 ms
35,040 KB
testcase_24 AC 1,853 ms
34,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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