結果

問題 No.2043 Ohuton and Makura
ユーザー mrngmrng
提出日時 2022-08-27 13:17:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 385 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 273,792 KB
最終ジャッジ日時 2024-10-14 11:18:37
合計ジャッジ時間 21,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 952 ms
177,992 KB
testcase_03 AC 918 ms
174,400 KB
testcase_04 AC 1,628 ms
241,792 KB
testcase_05 AC 1,021 ms
184,112 KB
testcase_06 AC 132 ms
84,892 KB
testcase_07 AC 1,794 ms
258,176 KB
testcase_08 AC 201 ms
97,844 KB
testcase_09 AC 987 ms
183,504 KB
testcase_10 AC 1,529 ms
233,476 KB
testcase_11 AC 1,037 ms
182,700 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 1,927 ms
273,536 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 TLE -
testcase_18 AC 1,942 ms
273,792 KB
testcase_19 AC 1,915 ms
273,664 KB
testcase_20 AC 1,910 ms
273,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,s = map(int,input().split())
n = s
d = [[1] for _ in range(n+1)]
ans = a*b
for i in range(2,n+1):
	d[i].append(i)
	v = d[i]
	for j in range(len(v)//2):
		x,y = v[j],v[-j-1]
		ans += max(0,a-x+1)*max(0,b-y+1)
		x,y = y,x
		ans += max(0,a-x+1)*max(0,b-y+1)
	if len(v)%2==1:
		x = v[len(v)//2]
		ans += max(0,a-x+1)*max(0,b-x+1)
	for j in range(i*2,n+1,i):
		d[j].append(i)
print(ans)
0