結果
| 問題 |
No.1250 汝は倍数なりや?
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-12-10 23:46:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 95 bytes |
| コンパイル時間 | 86 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 130,612 KB |
| 最終ジャッジ日時 | 2024-09-19 20:50:36 |
| 合計ジャッジ時間 | 5,941 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 RE * 15 |
ソースコード
n,h=map(int,input().split())
x=eval('*'.join(input().split()))
print("YES" if x%h==0 else "NO")