結果

問題 No.480 合計
ユーザー triggerwaffletriggerwaffle
提出日時 2020-09-02 02:03:18
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 11,693 ms
コンパイル使用メモリ 406,896 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 05:39:06
合計ジャッジ時間 12,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;
use std::str::FromStr;

fn read<T: FromStr>() -> T {
    let stdin = stdin();
    let stdin = stdin.lock();
    let token: String = stdin
        .bytes()
        .map(|c| c.expect("failed to read char") as char) 
        .skip_while(|c| c.is_whitespace())
        .take_while(|c| !c.is_whitespace())
        .collect();
    token.parse().ok().expect("failed to parse token")
}

fn main() {
    let a: u32 = read(); // (*)
    let ans = a * (a+1)/2;
    println!("{}", ans);
}
0