結果

問題 No.537 ユーザーID
ユーザー kawacchukawacchu
提出日時 2019-10-17 21:23:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 140 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-06-25 01:25:48
合計ジャッジ時間 4,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 TLE * 1 -- * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

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