結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | zyxw |
提出日時 | 2021-01-13 10:30:16 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 195 ms / 1,000 ms |
コード長 | 165 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 31,148 KB |
最終ジャッジ日時 | 2024-11-22 02:37:34 |
合計ジャッジ時間 | 6,072 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 |
ソースコード
import math N,H=map(int,input().split()) A=list(map(int,input().split())) for i in range(N): H//=math.gcd(A[i],H) if H==1: print("YES") else: print("NO")