結果
問題 | No.149 碁石の移動 |
ユーザー |
|
提出日時 | 2024-05-15 12:50:15 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 258 bytes |
コンパイル時間 | 13,279 ms |
コンパイル使用メモリ | 399,016 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-20 10:15:58 |
合計ジャッジ時間 | 14,040 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
use std::io::Read;fn main() {let mut s = String::new();std::io::stdin().read_to_string(&mut s).ok();let n: Vec<i64> = s.split_whitespace().flat_map(str::parse).collect();let w = 0.max(n[4] - n[1]);println!("{}", n[0] + n[5].min(n[2] + w) - w);}