結果
問題 | No.533 Mysterious Stairs |
ユーザー | uenoku |
提出日時 | 2017-10-26 07:59:55 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,318 bytes |
コンパイル時間 | 13,530 ms |
コンパイル使用メモリ | 379,388 KB |
実行使用メモリ | 56,704 KB |
最終ジャッジ日時 | 2024-11-21 19:48:43 |
合計ジャッジ時間 | 16,846 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
56,448 KB |
testcase_01 | AC | 81 ms
56,704 KB |
testcase_02 | AC | 81 ms
56,576 KB |
testcase_03 | AC | 81 ms
56,576 KB |
testcase_04 | AC | 80 ms
56,576 KB |
testcase_05 | AC | 80 ms
56,576 KB |
testcase_06 | AC | 81 ms
56,576 KB |
testcase_07 | AC | 80 ms
56,576 KB |
testcase_08 | AC | 81 ms
56,576 KB |
testcase_09 | AC | 81 ms
56,576 KB |
testcase_10 | AC | 81 ms
56,576 KB |
testcase_11 | AC | 80 ms
56,704 KB |
testcase_12 | AC | 82 ms
56,576 KB |
testcase_13 | AC | 80 ms
56,576 KB |
testcase_14 | AC | 81 ms
56,576 KB |
testcase_15 | AC | 81 ms
56,576 KB |
testcase_16 | AC | 81 ms
56,576 KB |
testcase_17 | AC | 81 ms
56,704 KB |
testcase_18 | AC | 80 ms
56,704 KB |
testcase_19 | AC | 81 ms
56,576 KB |
testcase_20 | AC | 83 ms
56,704 KB |
testcase_21 | AC | 82 ms
56,576 KB |
testcase_22 | AC | 86 ms
56,576 KB |
testcase_23 | AC | 92 ms
56,704 KB |
testcase_24 | AC | 93 ms
56,576 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
use std::io::{stdin, Read}; use std::str::FromStr; #[allow(unused_imports)] use std::{cmp, mem, process}; #[allow(unused_imports)] use std::collections::{HashSet, BTreeMap, BTreeSet}; fn main() { let n: usize = read::<usize>(); let mut dp = vec![vec![0; 4]; 1000105]; dp[1][1] = 1; dp[2][2] = 1; dp[3][3] = 1; let modulo = 1000000007; for i in 1..n + 1 { for j in 1..4 { for k in 1..4 { if k != j { dp[i + j][j] = (dp[i + j][j] + dp[i][k]) % modulo; } } } } println!("{}", (dp[n][1] + dp[n][2] + dp[n][3]) % modulo); } #[allow(dead_code)] fn read_vec<T: FromStr>(n: usize) -> Vec<T> { let mut v = vec![]; for _ in 0..n { let a = read::<T>(); v.push(a); } v } #[allow(dead_code)] fn read_str() -> Vec<char> { let s: String = read(); s.chars().collect::<Vec<char>>() } #[allow(dead_code)] fn read<T: FromStr>() -> T { let stdin = stdin(); let stdin = stdin.lock(); let s = stdin .bytes() .map(|c| c.unwrap() as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect::<String>(); s.parse::<T>().unwrap_or_else( |_| panic!("Faild to parse {}", s), ) }