結果
| 問題 |
No.1389 Clumsy Calculation
|
| コンテスト | |
| ユーザー |
ixTL255
|
| 提出日時 | 2023-01-08 22:54:48 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 414 bytes |
| コンパイル時間 | 14,776 ms |
| コンパイル使用メモリ | 383,944 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-16 02:53:44 |
| 合計ジャッジ時間 | 15,230 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
use std::io::*;
fn main() {
let mut s = String::new();
std::io::stdin().read_to_string(&mut s).ok();
let mut itr = s.trim().split_whitespace();
let n: isize = itr.next().unwrap().parse().unwrap();
let x: isize = itr.next().unwrap().parse().unwrap();
let s: Vec<isize> = itr.map(|e| e.parse().unwrap()).collect();
let sum: isize = s.iter().sum();
println!("{}", sum - x * (n - 1));
}
ixTL255