結果

問題 No.2480 Sequence Sum
ユーザー ああいいああいい
提出日時 2023-10-21 20:00:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-09-21 21:25:33
合計ジャッジ時間 1,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())

import sys
if N == 1:
	print(0)
	exit()
	
ans = N
C = 10 ** 5
t = 1
for i in range(2,C):
	if N % i == 0:
		count = 0
		while N % i == 0:
			count += 1
			N //= i
		t *= (count + 1)
print(ans - t)
0