結果

問題 No.537 ユーザーID
ユーザー lam6er
提出日時 2025-04-16 15:27:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2025-04-16 15:30:46
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
count = 0

for a in range(1, math.isqrt(N) + 1):
    if N % a == 0:
        b = N // a
        if a == b:
            count += 1
        else:
            count += 2

print(count)
0