結果

問題 No.537 ユーザーID
ユーザー kept1994kept1994
提出日時 2022-05-04 19:55:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,004 KB
最終ジャッジ日時 2024-07-03 23:03:10
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,560 KB
testcase_01 AC 43 ms
52,488 KB
testcase_02 AC 38 ms
52,880 KB
testcase_03 AC 38 ms
52,704 KB
testcase_04 AC 39 ms
52,280 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 43 ms
53,220 KB
testcase_07 AC 40 ms
52,604 KB
testcase_08 AC 40 ms
51,828 KB
testcase_09 AC 40 ms
52,884 KB
testcase_10 AC 39 ms
52,872 KB
testcase_11 AC 41 ms
51,904 KB
testcase_12 AC 40 ms
53,292 KB
testcase_13 AC 39 ms
52,628 KB
testcase_14 AC 39 ms
53,048 KB
testcase_15 AC 40 ms
52,076 KB
testcase_16 AC 39 ms
52,336 KB
testcase_17 AC 40 ms
52,508 KB
testcase_18 AC 55 ms
57,204 KB
testcase_19 AC 57 ms
57,464 KB
testcase_20 AC 56 ms
58,112 KB
testcase_21 AC 51 ms
58,360 KB
testcase_22 AC 56 ms
58,544 KB
testcase_23 AC 51 ms
57,680 KB
testcase_24 AC 44 ms
57,192 KB
testcase_25 AC 57 ms
59,072 KB
testcase_26 AC 60 ms
58,644 KB
testcase_27 AC 56 ms
58,180 KB
testcase_28 AC 55 ms
63,004 KB
testcase_29 AC 64 ms
61,676 KB
testcase_30 AC 60 ms
62,272 KB
testcase_31 AC 48 ms
58,328 KB
testcase_32 AC 47 ms
57,808 KB
testcase_33 AC 63 ms
61,240 KB
testcase_34 AC 52 ms
58,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
def getDivisors(n: int):
    res = []
    i = 1
    while i * i <= n:
        if n % i == 0:
            res.append((i, n // i))
        i += 1
    return res
    
def main():
    N = int(input())
    l = getDivisors(N)
    ans = set()
    for ll in l:
        ans.add(str(ll[0]) + str(ll[1]))
        ans.add(str(ll[1]) + str(ll[0]))
    print(len(ans))
    return
        

if __name__ == '__main__':
    main()
0