結果

問題 No.537 ユーザーID
ユーザー kawacchu
提出日時 2019-10-17 21:24:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-06-25 01:27:35
合計ジャッジ時間 4,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

N = int(input())
S = set()
for i in range(1,int(sqrt(N+1))+1) :
    if N % i != 0 :
        continue
    j = N//i
    S.add(str(i)+str(j))
    S.add(str(j)+str(i))
    
print(len(S))
0