提出 #59236163


ソースコード 拡げる

#![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)]
use ac_library::*;
use amplify::confinement::Collection;
use itertools::{CombinationsWithReplacement, Itertools};
use lazy_static::lazy_static;
use libm::{ceil, log};
use num::{integer::Roots, traits::Pow, ToPrimitive};
use num_bigint::BigInt;
use num_integer::{div_ceil, Integer};
use proconio::marker::{Chars, Usize1};
use proconio::{input, source::line::LineSource};
use std::collections::{BTreeSet, BinaryHeap, HashMap, HashSet, VecDeque};
use std::convert::From;
use std::f64::consts::PI;
use std::hash::Hash;
use std::mem::swap;
use std::ops::Index;
use std::ops::Mul;
use std::{io::*, string};

fn solve() {
    #[rustfmt::skip]
    input! {
        H:usize, W:usize,
        mut X:[[usize; W]; H],
        Q:usize,
        ABCD:[(Usize1, Usize1, Usize1, Usize1); Q]
    }
    for i in 0..H {
        for j in 0..W {
            if i == 0 && j == 0 {
                continue;
            }
            if j > 0 {
                X[i][j] += X[i][j - 1];
            }
            if i > 0 {
                X[i][j] += X[i - 1][j];
            }
            if i > 0 && j > 0 {
                X[i][j] -= X[i - 1][j - 1];
            }
        }
    }
    let mut ans = vec![];
    for &(a, b, c, d) in ABCD.iter() {
        let mut tmp = X[c][d];
        if a > 0 && b > 0 {
            tmp += X[a - 1][b - 1];
        }
        if a > 0 {
            tmp -= X[a - 1][d];
        }
        if b > 0 {
            tmp -= X[c][b - 1];
        }
        ans.push(tmp);
    }
    println!("{}", ans.iter().join("\n"));
}

fn main() {
    // input! {N:usize}
    // for _ in 0..N {
    //     solve();
    // }
    solve();
}

提出情報

提出日時
問題 A08 - Two Dimensional Sum
ユーザ rakka
言語 Rust (rustc 1.70.0)
得点 1000
コード長 1923 Byte
結果 AC
実行時間 54 ms
メモリ 30408 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 1000 / 1000
結果
AC × 1
AC × 7
セット名 テストケース
Sample sample01.txt
All max00.txt, random00.txt, random01.txt, random02.txt, random03.txt, random04.txt, sample01.txt
ケース名 結果 実行時間 メモリ
max00.txt AC 54 ms 30408 KiB
random00.txt AC 11 ms 8104 KiB
random01.txt AC 10 ms 7200 KiB
random02.txt AC 18 ms 10956 KiB
random03.txt AC 15 ms 9616 KiB
random04.txt AC 8 ms 6288 KiB
sample01.txt AC 0 ms 1940 KiB