結果

問題 No.1006 Share an Integer
ユーザー matriematrie
提出日時 2021-01-10 23:52:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 242 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-11-21 08:38:52
合計ジャッジ時間 34,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
20,992 KB
testcase_01 AC 28 ms
17,444 KB
testcase_02 AC 29 ms
17,188 KB
testcase_03 AC 28 ms
21,120 KB
testcase_04 AC 29 ms
17,700 KB
testcase_05 AC 31 ms
17,572 KB
testcase_06 AC 31 ms
17,444 KB
testcase_07 AC 33 ms
21,120 KB
testcase_08 AC 30 ms
17,572 KB
testcase_09 AC 32 ms
20,864 KB
testcase_10 AC 32 ms
17,444 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
	y,z=1,0
	while y*y<x: 
		if x%y<1:z+=2
		y+=1
	if y*y==x:z+=1
	return x-z
	
n=m=int(input())
A=[]
for i in range(1,n//2+1):
	j=n-i
	B=[(i,j),(j,i)]
	d=abs(f(i)-f(j))
	if d<m:A=B;m=d
	elif d==m:A+=B
for a in sorted(set(A)):print(*a)
0