結果
| 問題 |
No.1423 Triangle of Multiples
|
| コンテスト | |
| ユーザー |
Strorkis
|
| 提出日時 | 2021-03-12 21:45:47 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 1,378 bytes |
| コンパイル時間 | 12,978 ms |
| コンパイル使用メモリ | 377,884 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 12:03:32 |
| 合計ジャッジ時間 | 13,822 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 |
ソースコード
fn run<'a, F: FnMut() -> &'a str, W: std::io::Write>(scan: &mut F, writer: &mut W) {
macro_rules! scan {
([$t:tt; $n:expr]) => ((0..$n).map(|_| scan!($t)).collect::<Vec<_>>());
(($($t:tt),*)) => (($(scan!($t)),*));
(Usize1) => (scan!(usize) - 1);
(Bytes) => (scan().as_bytes().to_vec());
($t:ty) => (scan().parse::<$t>().unwrap());
}
macro_rules! println {
($($arg:tt)*) => (writeln!(writer, $($arg)*).ok());
}
for _ in 0..scan!(usize) {
let mut a = scan!([i64; 3]);
let mut ord = (0..3).collect::<Vec<_>>();
ord.sort_by_key(|&i| a[i]);
if a[ord[0]] + a[ord[1]] <= a[ord[2]] {
a[ord[0]] *= (a[ord[2]] - a[ord[1]]) / a[ord[0]] + 1;
}
for (i, val) in a.iter().enumerate() {
if i + 1 < a.len() {
write!(writer, "{} ", val).ok();
} else {
println!("{}", val);
}
}
}
}
fn main() {
let ref mut buf = Vec::new();
std::io::Read::read_to_end(&mut std::io::stdin(), buf).ok();
let mut scanner = unsafe {
std::str::from_utf8_unchecked(buf).split_ascii_whitespace()
};
let ref mut scan = || scanner.next().unwrap();
let stdout = std::io::stdout();
let ref mut writer = std::io::BufWriter::new(stdout.lock());
run(scan, writer);
}
Strorkis