結果

問題 No.2014 Eggs Hatching
ユーザー Fullmoon8507
提出日時 2022-09-19 18:05:15
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 15,397 ms
コンパイル使用メモリ 378,888 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 02:33:11
合計ジャッジ時間 13,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::stdin;

fn main() {
    let mut line = String::new();
    stdin().read_line(&mut line).expect("Fail.");

    let nlist: Vec<i32> = line.split_whitespace().map(|e| e.parse().unwrap()).collect();
    println!("{}", nlist.iter().min().unwrap());
}
0