結果

問題 No.2600 Avator Height
ユーザー neko_the_shadowneko_the_shadow
提出日時 2024-02-14 10:13:04
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 14,221 ms
コンパイル使用メモリ 397,160 KB
実行使用メモリ 9,840 KB
最終ジャッジ日時 2024-09-28 18:44:10
合計ジャッジ時間 24,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,084 KB
testcase_01 AC 306 ms
9,708 KB
testcase_02 AC 304 ms
9,680 KB
testcase_03 AC 296 ms
9,640 KB
testcase_04 AC 297 ms
9,668 KB
testcase_05 AC 289 ms
9,840 KB
testcase_06 AC 291 ms
9,684 KB
testcase_07 AC 298 ms
9,656 KB
testcase_08 AC 306 ms
9,648 KB
testcase_09 AC 303 ms
9,688 KB
testcase_10 AC 303 ms
9,688 KB
testcase_11 AC 296 ms
9,652 KB
testcase_12 AC 292 ms
9,708 KB
testcase_13 AC 289 ms
9,668 KB
testcase_14 AC 294 ms
9,644 KB
testcase_15 AC 290 ms
9,728 KB
testcase_16 AC 306 ms
9,672 KB
testcase_17 AC 293 ms
9,688 KB
testcase_18 AC 288 ms
9,668 KB
testcase_19 AC 289 ms
9,648 KB
testcase_20 AC 286 ms
9,620 KB
testcase_21 AC 299 ms
9,744 KB
testcase_22 AC 297 ms
9,688 KB
testcase_23 AC 294 ms
9,632 KB
testcase_24 AC 265 ms
9,712 KB
testcase_25 AC 269 ms
9,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable `R` should have a snake case name
 --> src/main.rs:4:13
  |
4 |     let mut R = vec![0u128; 200000+1];
  |             ^ help: convert the identifier to snake case: `r`
  |
  = note: `#[warn(non_snake_case)]` on by default

warning: variable `E` should have a snake case name
 --> src/main.rs:5:13
  |
5 |     let mut E = vec![0u128; 200000+1];
  |             ^ help: convert the identifier to snake case: `e`

warning: variable `Q` should have a snake case name
  --> src/main.rs:15:9
   |
15 |     let Q = input();
   |         ^ help: convert the identifier to snake case: `q`

warning: variable `N` should have a snake case name
  --> src/main.rs:16:9
   |
16 |     let N = (0..Q).map(|_| input()).collect::<Vec<_>>();
   |         ^ help: convert the identifier to snake case: `n`

ソースコード

diff #

use std::io::stdin;

fn main() {
    let mut R = vec![0u128; 200000+1];
    let mut E = vec![0u128; 200000+1];
    R[1] = 1;
    R[2] = 1;
    E[1] = 1;
    E[2] = 3;
    for i in 3..200000+1 {
        R[i] = (R[i-1]+R[i-2])%998244353;
        E[i] = (E[i-1]+E[i-2])%998244353;
    }

    let Q = input();
    let N = (0..Q).map(|_| input()).collect::<Vec<_>>();
    for n in N {
        let mut ans = 1;
        ans *= (R[n]*R[n])%998244353;
        ans %= 998244353;
        ans *= 5;
        ans %= 998244353;

        ans += 998244353;
        ans -= (E[n]*E[n])%998244353;
        ans %= 998244353;
        
        println!("{}", ans);
    }
}

fn input() -> usize {
    let mut line = String::new();
    stdin().read_line(&mut line).unwrap();
    line.trim().parse::<_>().unwrap()
}
0