結果

問題 No.390 最長の数列
ユーザー koba-e964koba-e964
提出日時 2016-08-04 01:01:34
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 3,116 ms
コンパイル使用メモリ 152,832 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-04-24 15:16:17
合計ジャッジ時間 2,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,784 KB
testcase_01 AC 9 ms
6,784 KB
testcase_02 AC 11 ms
6,784 KB
testcase_03 AC 10 ms
6,656 KB
testcase_04 AC 11 ms
6,656 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 10 ms
6,784 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 31 ms
6,732 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 32 ms
6,732 KB
testcase_14 AC 56 ms
6,732 KB
testcase_15 AC 7 ms
6,656 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::*;
#[allow(dead_code)]
fn getline() -> String {
    let mut ret = String::new();
    std::io::stdin().read_line(&mut ret).ok();
    return ret;
}
fn get_word() -> String {
    let mut stdin = std::io::stdin();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.is_err() || res.ok().unwrap() == 0 || u8b[0] <= ' ' as u8 {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = std::string::String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}
fn parse<T: std::str::FromStr>(s: &str) -> T { s.parse::<T>().ok().unwrap() }

#[allow(dead_code)]
fn get<T: std::str::FromStr>() -> T { parse(&get_word()) }


const N: usize = 1_000_001;
fn main() {
    let n: usize = get();
    let x: Vec<usize> = (0 .. n).map(|_| get()).collect();
    let mut tbl: Vec<bool> = (0 .. N).map(|_| false).collect();
    for i in x {
        tbl[i] = true;
    }
    let mut dp: Vec<i32> = (0 .. N).map(|_| 0).collect();
    for i in (1 .. N).rev() {
        if tbl[i] {
            for j in 2 .. N / i {
                dp[i] = max(dp[i], dp[i * j] + 1);
            }
        } else {
            dp[i] = 0;
        }
    }
    println!("{}", dp.iter().max().unwrap());
}
0