結果

問題 No.537 ユーザーID
ユーザー rlangevinrlangevin
提出日時 2024-05-29 08:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 1,402 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 64,208 KB
最終ジャッジ日時 2024-12-20 20:58:56
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,628 KB
testcase_01 AC 39 ms
53,060 KB
testcase_02 AC 40 ms
52,708 KB
testcase_03 AC 41 ms
52,028 KB
testcase_04 AC 40 ms
52,180 KB
testcase_05 AC 38 ms
52,880 KB
testcase_06 AC 41 ms
52,708 KB
testcase_07 AC 40 ms
53,232 KB
testcase_08 AC 40 ms
52,548 KB
testcase_09 AC 41 ms
52,136 KB
testcase_10 AC 40 ms
52,280 KB
testcase_11 AC 39 ms
52,316 KB
testcase_12 AC 38 ms
53,168 KB
testcase_13 AC 38 ms
52,300 KB
testcase_14 AC 38 ms
52,692 KB
testcase_15 AC 38 ms
52,244 KB
testcase_16 AC 39 ms
52,764 KB
testcase_17 AC 39 ms
52,760 KB
testcase_18 AC 54 ms
57,560 KB
testcase_19 AC 56 ms
58,736 KB
testcase_20 AC 54 ms
57,188 KB
testcase_21 AC 50 ms
57,672 KB
testcase_22 AC 54 ms
58,772 KB
testcase_23 AC 50 ms
59,028 KB
testcase_24 AC 45 ms
57,596 KB
testcase_25 AC 56 ms
58,468 KB
testcase_26 AC 59 ms
57,608 KB
testcase_27 AC 56 ms
58,400 KB
testcase_28 AC 57 ms
63,184 KB
testcase_29 AC 64 ms
63,404 KB
testcase_30 AC 62 ms
64,208 KB
testcase_31 AC 49 ms
57,604 KB
testcase_32 AC 48 ms
59,192 KB
testcase_33 AC 66 ms
62,408 KB
testcase_34 AC 53 ms
58,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    i = 1
    SS = set()
    while i * i <= n:
        if n % i == 0:
            SS.add(i)
            SS.add(n//i)
        i += 1
    return sorted(list(SS))


N = int(input())
S = set()
for a in div(N):
    b = N // a
    S.add(str(a) + str(b))
    S.add(str(b) + str(a))
    
print(len(S))
0