結果

問題 No.2110 012 Matching
ユーザー ⁣
提出日時 2024-07-10 17:36:32
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 19,738 ms
コンパイル使用メモリ 386,924 KB
実行使用メモリ 8,256 KB
最終ジャッジ日時 2024-07-10 17:37:05
合計ジャッジ時間 23,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 37 ms
6,816 KB
testcase_02 AC 95 ms
6,944 KB
testcase_03 AC 67 ms
6,940 KB
testcase_04 AC 130 ms
6,948 KB
testcase_05 AC 91 ms
6,944 KB
testcase_06 AC 87 ms
6,944 KB
testcase_07 AC 146 ms
8,256 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 23 ms
6,940 KB
testcase_10 AC 148 ms
7,296 KB
testcase_11 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	s.lines().skip(1).for_each(|l| {
		let v: Vec<u64> = l.split(' ').flat_map(str::parse).collect();
		let m = v[0].min(v[2]);
		let (a, b, c, d) = (v[0] - m, v[1] / 2, v[2] - m, v[1] % 2);
		println!("{}", 2 * (m + b) + a.min(d) + c / 2);
	});
}
0