結果

問題 No.339 何人が回答したのか
ユーザー mlihua09mlihua09
提出日時 2020-09-01 21:29:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 115 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-04-30 20:01:44
合計ジャッジ時間 4,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,136 KB
testcase_01 AC 39 ms
52,788 KB
testcase_02 AC 39 ms
53,420 KB
testcase_03 AC 39 ms
53,312 KB
testcase_04 AC 40 ms
52,468 KB
testcase_05 AC 39 ms
53,088 KB
testcase_06 AC 39 ms
52,340 KB
testcase_07 AC 41 ms
53,128 KB
testcase_08 AC 39 ms
53,220 KB
testcase_09 AC 39 ms
52,472 KB
testcase_10 AC 40 ms
53,080 KB
testcase_11 AC 39 ms
52,008 KB
testcase_12 AC 40 ms
53,744 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 40 ms
52,192 KB
testcase_15 AC 41 ms
52,664 KB
testcase_16 AC 39 ms
52,956 KB
testcase_17 AC 41 ms
52,676 KB
testcase_18 AC 40 ms
53,332 KB
testcase_19 AC 40 ms
52,008 KB
testcase_20 AC 39 ms
52,068 KB
testcase_21 AC 38 ms
53,144 KB
testcase_22 AC 40 ms
53,220 KB
testcase_23 AC 40 ms
52,384 KB
testcase_24 AC 39 ms
53,812 KB
testcase_25 AC 39 ms
52,588 KB
testcase_26 AC 40 ms
52,392 KB
testcase_27 AC 39 ms
53,352 KB
testcase_28 AC 40 ms
52,740 KB
testcase_29 AC 39 ms
53,620 KB
testcase_30 AC 40 ms
52,676 KB
testcase_31 AC 40 ms
52,068 KB
testcase_32 AC 40 ms
52,800 KB
testcase_33 AC 41 ms
52,232 KB
testcase_34 AC 40 ms
52,128 KB
testcase_35 AC 40 ms
52,868 KB
testcase_36 AC 39 ms
53,116 KB
testcase_37 AC 39 ms
52,584 KB
testcase_38 AC 39 ms
52,316 KB
testcase_39 AC 40 ms
52,076 KB
testcase_40 AC 39 ms
52,280 KB
testcase_41 AC 39 ms
52,412 KB
testcase_42 AC 39 ms
52,332 KB
testcase_43 AC 38 ms
52,736 KB
testcase_44 AC 39 ms
53,184 KB
testcase_45 AC 39 ms
52,412 KB
testcase_46 AC 41 ms
52,544 KB
testcase_47 AC 41 ms
52,320 KB
testcase_48 AC 40 ms
52,404 KB
testcase_49 AC 40 ms
52,652 KB
testcase_50 AC 40 ms
52,780 KB
testcase_51 AC 40 ms
52,504 KB
testcase_52 AC 40 ms
53,072 KB
testcase_53 AC 39 ms
52,248 KB
testcase_54 AC 39 ms
52,196 KB
testcase_55 AC 41 ms
53,284 KB
testcase_56 AC 40 ms
53,616 KB
testcase_57 AC 40 ms
53,332 KB
testcase_58 AC 40 ms
52,732 KB
testcase_59 AC 40 ms
53,708 KB
testcase_60 AC 41 ms
52,076 KB
testcase_61 AC 39 ms
52,944 KB
testcase_62 AC 40 ms
52,596 KB
testcase_63 AC 39 ms
52,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

from math import gcd
g = 0
for i in range(N):
    g = gcd(g, int(input()))
    
print(100 // g)
0