結果
| 問題 |
No.1250 汝は倍数なりや?
|
| コンテスト | |
| ユーザー |
nak2yoshi
|
| 提出日時 | 2020-10-09 23:35:05 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 396 bytes |
| コンパイル時間 | 1,353 ms |
| コンパイル使用メモリ | 173,024 KB |
| 実行使用メモリ | 13,636 KB |
| 最終ジャッジ日時 | 2024-06-22 09:24:46 |
| 合計ジャッジ時間 | 3,223 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 WA * 21 |
ソースコード
import std;
void main() {
auto input = readln.split.to!(long[]);
auto N = input[0], H = input[1];
if (H == 1) {
writeln("YES");
return;
}
auto A = readln.split.to!(long[]);
if (A.count!"a == 0" > 0) {
writeln("NO");
return;
}
if (A.count!(a => a % H == 0) > 0) {
writeln("YES");
return;
}
writeln("NO");
}
nak2yoshi