結果

問題 No.339 何人が回答したのか
ユーザー gorugo30gorugo30
提出日時 2021-03-20 13:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 175 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-04-30 23:38:50
合計ジャッジ時間 3,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,164 KB
testcase_01 AC 34 ms
54,104 KB
testcase_02 AC 33 ms
52,804 KB
testcase_03 AC 34 ms
52,108 KB
testcase_04 AC 33 ms
52,332 KB
testcase_05 AC 32 ms
52,872 KB
testcase_06 AC 32 ms
52,132 KB
testcase_07 AC 32 ms
52,236 KB
testcase_08 AC 33 ms
52,428 KB
testcase_09 AC 33 ms
52,620 KB
testcase_10 AC 32 ms
52,204 KB
testcase_11 AC 32 ms
52,620 KB
testcase_12 AC 34 ms
52,412 KB
testcase_13 AC 36 ms
52,268 KB
testcase_14 AC 33 ms
52,820 KB
testcase_15 AC 33 ms
52,532 KB
testcase_16 AC 32 ms
52,408 KB
testcase_17 AC 33 ms
52,472 KB
testcase_18 AC 32 ms
52,540 KB
testcase_19 AC 34 ms
52,504 KB
testcase_20 AC 33 ms
52,616 KB
testcase_21 AC 32 ms
52,776 KB
testcase_22 AC 33 ms
52,200 KB
testcase_23 AC 33 ms
52,928 KB
testcase_24 AC 33 ms
53,028 KB
testcase_25 AC 32 ms
52,428 KB
testcase_26 AC 33 ms
53,080 KB
testcase_27 AC 33 ms
53,156 KB
testcase_28 AC 32 ms
52,628 KB
testcase_29 AC 33 ms
53,044 KB
testcase_30 AC 34 ms
52,616 KB
testcase_31 AC 33 ms
52,316 KB
testcase_32 AC 32 ms
51,880 KB
testcase_33 AC 33 ms
52,824 KB
testcase_34 AC 33 ms
52,404 KB
testcase_35 AC 33 ms
52,572 KB
testcase_36 AC 32 ms
53,024 KB
testcase_37 AC 32 ms
52,692 KB
testcase_38 AC 33 ms
53,280 KB
testcase_39 AC 33 ms
51,940 KB
testcase_40 AC 32 ms
52,064 KB
testcase_41 AC 33 ms
52,012 KB
testcase_42 AC 34 ms
52,000 KB
testcase_43 AC 32 ms
52,916 KB
testcase_44 AC 32 ms
52,328 KB
testcase_45 AC 33 ms
52,612 KB
testcase_46 AC 32 ms
52,192 KB
testcase_47 AC 32 ms
53,816 KB
testcase_48 AC 31 ms
53,112 KB
testcase_49 AC 32 ms
52,532 KB
testcase_50 AC 31 ms
53,256 KB
testcase_51 AC 32 ms
52,396 KB
testcase_52 AC 32 ms
52,440 KB
testcase_53 AC 32 ms
52,688 KB
testcase_54 AC 32 ms
52,908 KB
testcase_55 AC 32 ms
53,196 KB
testcase_56 AC 34 ms
52,196 KB
testcase_57 AC 33 ms
52,880 KB
testcase_58 AC 33 ms
52,608 KB
testcase_59 AC 32 ms
52,524 KB
testcase_60 AC 33 ms
52,068 KB
testcase_61 AC 33 ms
53,012 KB
testcase_62 AC 34 ms
52,692 KB
testcase_63 AC 33 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def gcd(a, b):
    if b == 0:
        return a
    return gcd(b, a % b)

g = int(input())
for i in range(N - 1):
    g = gcd(g, int(input()))
print(100 // g)
0