結果

問題 No.537 ユーザーID
ユーザー kokoa1046
提出日時 2017-09-23 22:12:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-14 05:40:21
合計ジャッジ時間 7,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
cnt = 0
i = 1
while True:
    if i < math.sqrt(n):
        if n % i ==0:
            cnt+=2
    elif i == math.sqrt(n):
        cnt+=1
    else:
        break
    i+=1
print(cnt)
    
0