結果
問題 | No.149 碁石の移動 |
ユーザー |
|
提出日時 | 2024-05-15 12:48:19 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 270 bytes |
コンパイル時間 | 15,171 ms |
コンパイル使用メモリ | 395,116 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-20 10:15:37 |
合計ジャッジ時間 | 14,242 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 mut n: Vec<i64> = s.split_whitespace().flat_map(str::parse).collect();let w = 0.max(n[4] - n[1]);n[0] += n[5].min(n[2] + w) - w;println!("{}", n[0]);}