結果

問題 No.278 連続する整数の和(2)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-12 17:51:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 59,952 KB
最終ジャッジ日時 2024-09-12 17:52:00
合計ジャッジ時間 2,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 37 ms
52,616 KB
testcase_02 AC 55 ms
58,644 KB
testcase_03 AC 37 ms
52,820 KB
testcase_04 AC 37 ms
52,712 KB
testcase_05 AC 42 ms
58,052 KB
testcase_06 AC 41 ms
58,244 KB
testcase_07 AC 42 ms
59,952 KB
testcase_08 AC 59 ms
58,168 KB
testcase_09 AC 52 ms
58,920 KB
testcase_10 AC 57 ms
58,360 KB
testcase_11 AC 58 ms
58,000 KB
testcase_12 AC 37 ms
52,228 KB
testcase_13 AC 56 ms
58,180 KB
testcase_14 AC 48 ms
59,112 KB
testcase_15 AC 53 ms
57,748 KB
testcase_16 AC 50 ms
58,804 KB
testcase_17 AC 54 ms
58,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=set()
i=1
while i*i<=n:
	if n%i==0:
		x=i
		a.add(x//(1+(x%2==0)))
		x=n//i
		a.add(x//(1+(x%2==0)))
	i+=1
print(sum(list(a)))
0