結果
| 問題 | No.1250 汝は倍数なりや? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-10 11:26:18 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 175 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 35,588 KB |
| 最終ジャッジ日時 | 2026-08-20 04:51:37 |
| 合計ジャッジ時間 | 8,697 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 20 |
ソースコード
n, h = map(int, input().split())
al = list(map(int, input().split()))
cnt = 0
for a in al:
if a%h == 0:
cnt += 1
if cnt > 0:
print('YES')
else:
print('NO')