結果

問題 No.537 ユーザーID
ユーザー jamad
提出日時 2017-08-10 06:55:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-12 01:57:18
合計ジャッジ時間 5,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 21 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[]
for i in range(1,int(N**0.5)):
    if N%i==0:
        x=str(i)+str(N//i)
        y=str(N//i)+str(i)
        if x not in A:A.append(x)
        if y not in A:A.append(y)
print(len(A))
0