結果

問題 No.2480 Sequence Sum
ユーザー ntudantuda
提出日時 2023-09-23 14:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 500 ms
コード長 347 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-07-26 14:42:04
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 44 ms
57,216 KB
testcase_03 AC 43 ms
57,728 KB
testcase_04 AC 46 ms
57,216 KB
testcase_05 AC 44 ms
57,728 KB
testcase_06 AC 44 ms
57,088 KB
testcase_07 AC 47 ms
57,728 KB
testcase_08 AC 44 ms
57,216 KB
testcase_09 AC 45 ms
57,088 KB
testcase_10 AC 44 ms
57,088 KB
testcase_11 AC 45 ms
57,216 KB
testcase_12 AC 45 ms
57,216 KB
testcase_13 AC 46 ms
57,728 KB
testcase_14 AC 47 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []  #必要に応じてsetにしても良いかも
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n//i)
        i += 1
    divisors.sort()
    return divisors

N = int(input())
print(N - len(make_divisors(N)))
0