結果

問題 No.72 そろばん Med
ユーザー hitoyozake
提出日時 2018-08-05 15:39:38
言語 Rust
(1.83.0 + proconio)
結果
TLE  
実行時間 -
コード長 328 bytes
コンパイル時間 12,087 ms
コンパイル使用メモリ 402,540 KB
実行使用メモリ 8,604 KB
最終ジャッジ日時 2024-09-19 18:04:32
合計ジャッジ時間 23,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other TLE * 1 -- * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `x`
 --> src/main.rs:5:9
  |
5 |     let x = std::io::stdin().read_line(& mut buf);
  |         ^ help: if this is intentional, prefix it with an underscore: `_x`
  |
  = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

fn read_i64()->i64{

    let mut buf = String::new();

    let x = std::io::stdin().read_line(& mut buf);

    buf.trim().parse::<i64>().unwrap()

}



fn main() {
    let n = read_i64();

    let mut max:i64 = 0;

    for i in 0..n{

        max = std::cmp::max(max, (n-i+ 1)*i + (n-i));
    
    }

    println!("{}", max);

}
0