結果

問題 No.537 ユーザーID
ユーザー convexineqconvexineq
提出日時 2021-02-25 02:25:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 63,968 KB
最終ジャッジ日時 2024-09-25 02:51:23
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,756 KB
testcase_01 AC 36 ms
52,396 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 38 ms
52,708 KB
testcase_04 AC 38 ms
52,856 KB
testcase_05 AC 37 ms
52,196 KB
testcase_06 AC 36 ms
52,924 KB
testcase_07 AC 37 ms
51,872 KB
testcase_08 AC 37 ms
52,472 KB
testcase_09 AC 38 ms
52,704 KB
testcase_10 AC 38 ms
52,284 KB
testcase_11 AC 39 ms
52,732 KB
testcase_12 AC 38 ms
52,268 KB
testcase_13 AC 38 ms
52,524 KB
testcase_14 AC 37 ms
52,192 KB
testcase_15 AC 37 ms
52,396 KB
testcase_16 AC 37 ms
52,952 KB
testcase_17 AC 37 ms
53,464 KB
testcase_18 AC 51 ms
57,400 KB
testcase_19 AC 54 ms
57,592 KB
testcase_20 AC 51 ms
57,932 KB
testcase_21 AC 48 ms
57,340 KB
testcase_22 AC 54 ms
57,176 KB
testcase_23 AC 48 ms
58,436 KB
testcase_24 AC 42 ms
58,600 KB
testcase_25 AC 54 ms
57,784 KB
testcase_26 AC 55 ms
58,300 KB
testcase_27 AC 51 ms
57,328 KB
testcase_28 AC 52 ms
63,312 KB
testcase_29 AC 62 ms
63,552 KB
testcase_30 AC 59 ms
63,968 KB
testcase_31 AC 45 ms
58,056 KB
testcase_32 AC 45 ms
58,256 KB
testcase_33 AC 61 ms
62,136 KB
testcase_34 AC 50 ms
58,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return res

n = int(input())
s = set(str(i)+str(n//i) for i in divisor_list(n))
print(len(s))
0