結果
| 問題 | No.1250 汝は倍数なりや? |
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2020-12-14 08:02:30 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 132 bytes |
| 記録 | |
| コンパイル時間 | 307 ms |
| コンパイル使用メモリ | 85,008 KB |
| 実行使用メモリ | 92,092 KB |
| 最終ジャッジ日時 | 2026-04-08 12:53:37 |
| 合計ジャッジ時間 | 4,149 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 20 |
ソースコード
N,H=map(int,input().split())
A=map(int,input().split())
for a in A:
if a%H==0:
print("YES")
exit(0)
print("NO")
Kazun