結果

問題 No.2451 Redistribute Integers
ユーザー ⁣
提出日時 2024-07-20 19:45:06
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 13,757 ms
コンパイル使用メモリ 378,156 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-20 19:45:27
合計ジャッジ時間 12,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 33 ms
11,392 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 24 ms
9,216 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 31 ms
11,136 KB
testcase_15 AC 16 ms
6,528 KB
testcase_16 AC 15 ms
5,888 KB
testcase_17 WA -
testcase_18 AC 31 ms
10,752 KB
testcase_19 WA -
testcase_20 AC 27 ms
8,832 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let n: Vec<i64> = s.split_whitespace().flat_map(str::parse).collect();
	println!(
		"{}",
		if n[1..].iter().sum::<i64>() % n[0] == 0 {
			"Yes"
		} else {
			"No"
		}
	)
}
0