結果

問題 No.339 何人が回答したのか
ユーザー akitsugu777
提出日時 2019-07-31 14:52:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 164 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-05 06:28:39
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from functools import reduce

def g(n):
    return reduce(math.gcd, n)

n = int(input())
a = [int(input()) for _ in range(n)]

x = g(a)

print(100 // x)
0