結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-05 21:13:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 135,376 KB
最終ジャッジ日時 2024-10-18 20:53:16
合計ジャッジ時間 144,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
111,108 KB
testcase_01 AC 36 ms
111,788 KB
testcase_02 AC 37 ms
112,176 KB
testcase_03 WA -
testcase_04 AC 34 ms
111,220 KB
testcase_05 AC 34 ms
111,824 KB
testcase_06 AC 33 ms
111,568 KB
testcase_07 AC 35 ms
111,508 KB
testcase_08 AC 33 ms
111,352 KB
testcase_09 AC 33 ms
60,480 KB
testcase_10 AC 33 ms
111,256 KB
testcase_11 AC 43 ms
121,188 KB
testcase_12 AC 45 ms
122,200 KB
testcase_13 AC 43 ms
122,464 KB
testcase_14 AC 43 ms
123,376 KB
testcase_15 AC 43 ms
120,968 KB
testcase_16 AC 45 ms
121,728 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 32 ms
52,708 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
08_evil_01.txt TLE -
08_evil_02.txt TLE -
08_evil_03.txt TLE -
08_evil_04.txt TLE -
08_evil_05.txt TLE -
08_evil_06.txt TLE -
08_evil_07.txt TLE -
08_evil_08.txt TLE -
08_evil_09.txt TLE -
08_evil_10.txt TLE -
08_evil_11.txt TLE -
08_evil_12.txt TLE -
08_evil_13.txt TLE -
08_evil_14.txt TLE -
08_evil_15.txt TLE -
08_evil_16.txt TLE -
08_evil_17.txt TLE -
08_evil_18.txt TLE -
08_evil_19.txt TLE -
08_evil_20.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
for j in range(1,N+1):
	for x in range(1,N+1):
		lf=x*j
		ri=(x+1)*j
		ri=min(ri,N+1)
		if ri-lf<0:
			break
		ans+=x*(ri-lf)
print(ans)
0