結果

問題 No.2480 Sequence Sum
ユーザー miya145592miya145592
提出日時 2023-09-22 23:29:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 500 ms
コード長 386 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 59,236 KB
最終ジャッジ日時 2024-07-26 14:41:16
合計ジャッジ時間 1,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 38 ms
52,496 KB
testcase_02 AC 40 ms
57,820 KB
testcase_03 AC 41 ms
57,784 KB
testcase_04 AC 40 ms
58,140 KB
testcase_05 AC 40 ms
57,720 KB
testcase_06 AC 40 ms
57,536 KB
testcase_07 AC 40 ms
58,780 KB
testcase_08 AC 41 ms
58,300 KB
testcase_09 AC 44 ms
59,236 KB
testcase_10 AC 41 ms
57,932 KB
testcase_11 AC 40 ms
57,864 KB
testcase_12 AC 41 ms
58,296 KB
testcase_13 AC 40 ms
58,004 KB
testcase_14 AC 41 ms
58,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

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