結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | 👑 obakyan |
提出日時 | 2020-10-24 15:42:48 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 73 ms / 1,000 ms |
コード長 | 228 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 15:18:27 |
合計ジャッジ時間 | 2,387 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 |
ソースコード
local function getgcd(x, y) while 0 < x do x, y = y % x, x end return y end n, h = io.read("*n", "*n") for i = 1, n do a = io.read("*n") v = getgcd(h, a) h = math.floor(h / v) end print(h == 1 and "YES" or "NO")