結果

問題 No.537 ユーザーID
ユーザー naoya_t
提出日時 2017-06-30 22:26:37
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,952 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 19:30:36
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(raw_input())
from math import sqrt
q=int(sqrt(n))
s=0
if q*q == n:
  s = 1
  q -= 1
for a in xrange(1,q+1):
  if n % a == 0: s += 2
print s
0