結果

問題 No.2374 ASKT Subsequences
ユーザー とろちゃとろちゃ
提出日時 2023-07-07 22:57:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,551 ms / 2,000 ms
コード長 1,444 bytes
コンパイル時間 14,489 ms
コンパイル使用メモリ 378,940 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-07-21 19:14:08
合計ジャッジ時間 21,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 7 ms
6,272 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 12 ms
7,936 KB
testcase_15 AC 19 ms
9,472 KB
testcase_16 AC 9 ms
6,912 KB
testcase_17 AC 32 ms
11,776 KB
testcase_18 AC 89 ms
17,280 KB
testcase_19 AC 72 ms
16,128 KB
testcase_20 AC 195 ms
22,912 KB
testcase_21 AC 272 ms
25,344 KB
testcase_22 AC 148 ms
20,736 KB
testcase_23 AC 91 ms
17,536 KB
testcase_24 AC 90 ms
17,536 KB
testcase_25 AC 75 ms
17,536 KB
testcase_26 AC 626 ms
33,152 KB
testcase_27 AC 550 ms
33,280 KB
testcase_28 AC 367 ms
33,152 KB
testcase_29 AC 1,171 ms
33,024 KB
testcase_30 AC 1,551 ms
33,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]
#![allow(unused_imports)]
#![allow(unused_macros)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::comparison_chain)]
#![allow(clippy::nonminimal_bool)]
#![allow(clippy::neg_multiply)]
#![allow(dead_code)]
// use itertools::Itertools;
// use std::collections::{BTreeSet, HashSet, VecDeque};
// use std::f64::consts::PI;
// use proconio::fastout;
// use proconio::*;
// use std::cmp::{max, min};

macro_rules! input(($($tt:tt)*) => (
    let stdin = std::io::stdin();
    let mut stdin = proconio::source::line::LineSource::new(std::io::BufReader::new(stdin));
    proconio::input!(from &mut stdin, $($tt)*);
));

// #[fastout]
fn main() {
    input! {
        n: usize,
        a: [usize; n],
    }
    let mut countList: Vec<Vec<usize>> = vec![vec![0; 2001]; n];
    for i in (0..n).rev() {
        for j in 0..2001 {
            if i < n - 1 {
                countList[i][j] = countList[i + 1][j];
            }
        }
        countList[i][a[i]] += 1;
    }

    let mut ans = 0;
    for i in 0..n {
        for j in i + 1..n {
            if (a[j] as i128) - (a[i] as i128) - 10 <= 0 {
                continue;
            }
            let diff = a[j] - a[i] - 10;
            for k in j + 1..n {
                if (a[k] == a[j] - diff) && (a[k] + diff + 1 < 2001) {
                    ans += countList[k][a[k] + diff + 1];
                }
            }
        }
    }
    println!("{}", ans);
}
0