AC043 in rust, finished all. (D doesn't get tested correctly locally)
This commit is contained in:
11
atcoder/beginner_contests/abc043/src/bin/a.rs
Normal file
11
atcoder/beginner_contests/abc043/src/bin/a.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
use proconio::input;
|
||||
|
||||
fn main() {
|
||||
input!{
|
||||
n: u32,
|
||||
};
|
||||
|
||||
let result = n * (n + 1) / 2;
|
||||
|
||||
println!("{}", {result});
|
||||
}
|
||||
Reference in New Issue
Block a user