結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー ⁣
提出日時 2024-07-14 18:54:34
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 15,373 ms
コンパイル使用メモリ 402,308 KB
実行使用メモリ 18,928 KB
最終ジャッジ日時 2024-07-14 18:54:56
合計ジャッジ時間 19,576 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,884 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let v: Vec<i64> = s.split_whitespace().flat_map(str::parse).collect();
	let mut a = 0;
	for n in v[3..].chunks(3) {
		a += n[2]
			* (1..=v[1])
				.map(|w| 0.max(n[0] - (n[1] - w).abs()))
				.sum::<i64>();
		a %= 998244353;
	}
	println!("{a}")
}
0