結果

問題 No.537 ユーザーID
ユーザー Dexctersu
提出日時 2018-01-09 23:58:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 227 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-23 14:32:26
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other AC * 1 RE * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
import math
ans=set()
if n==1:
    print(1)
else:
    for i in range(math.sqrt(n)):
        if n%i==0:
            j=n//i
            ans.add(str(i)+str(j))
            ans.add(str(j)+str(i))
    print(len(ans))
0