結果
| 問題 |
No.1250 汝は倍数なりや?
|
| コンテスト | |
| ユーザー |
nak2yoshi
|
| 提出日時 | 2020-10-09 23:28:20 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 486 bytes |
| コンパイル時間 | 1,698 ms |
| コンパイル使用メモリ | 177,848 KB |
| 実行使用メモリ | 24,876 KB |
| 最終ジャッジ日時 | 2024-06-22 09:24:35 |
| 合計ジャッジ時間 | 5,026 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 1 TLE * 1 -- * 18 |
ソースコード
import std;
void main() {
auto input = readln.split.to!(long[]);
auto N = input[0], H = input[1];
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;
}
BigInt P = 1;
foreach (i; 0 .. N) {
P *= A[i];
if (P % H == 0) {
writeln("YES");
return;
}
}
writeln("NO");
}
nak2yoshi