結果

問題 No.390 最長の数列
ユーザー koba-e964koba-e964
提出日時 2016-08-04 01:02:54
言語 Rust
(1.77.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,520 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 145,980 KB
実行使用メモリ 6,852 KB
最終ジャッジ日時 2023-08-28 21:31:37
合計ジャッジ時間 2,738 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,772 KB
testcase_01 AC 6 ms
6,740 KB
testcase_02 AC 7 ms
6,836 KB
testcase_03 AC 6 ms
6,828 KB
testcase_04 AC 7 ms
6,812 KB
testcase_05 AC 27 ms
6,824 KB
testcase_06 AC 44 ms
6,832 KB
testcase_07 AC 6 ms
6,812 KB
testcase_08 AC 6 ms
6,616 KB
testcase_09 AC 6 ms
6,824 KB
testcase_10 AC 31 ms
6,772 KB
testcase_11 AC 30 ms
6,852 KB
testcase_12 AC 31 ms
6,632 KB
testcase_13 AC 28 ms
6,644 KB
testcase_14 AC 51 ms
6,820 KB
testcase_15 AC 5 ms
6,784 KB
testcase_16 AC 5 ms
6,772 KB
testcase_17 AC 6 ms
6,816 KB
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] {
            dp[i] = 1;
            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