結果
問題 | No.1006 Share an Integer |
ユーザー | ogi_welcome |
提出日時 | 2020-03-06 23:17:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 88,228 KB |
最終ジャッジ日時 | 2024-10-14 09:48:53 |
合計ジャッジ時間 | 12,765 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 693 ms
88,228 KB |
testcase_01 | AC | 697 ms
81,408 KB |
testcase_02 | AC | 707 ms
81,408 KB |
testcase_03 | AC | 683 ms
81,408 KB |
testcase_04 | AC | 717 ms
81,280 KB |
testcase_05 | AC | 785 ms
81,408 KB |
testcase_06 | AC | 804 ms
81,536 KB |
testcase_07 | AC | 847 ms
81,536 KB |
testcase_08 | AC | 769 ms
81,280 KB |
testcase_09 | AC | 854 ms
81,664 KB |
testcase_10 | AC | 816 ms
81,280 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
def f(n): m=n l=[] for i in range(2,n): if n%i==0: cnt=0 while n%i==0: cnt+=1 n//=i l.append((i,cnt)) ans=1 if len(l)==0: l.append((n,1)) for k in l: ans*=(k[1]+1) return ans x=int(input()) e=[[] for i in range(10**6+1)] q=10**6+2 for i in range(max(1,x//2-1000),min(x,x//2+1000)): r=abs(i-f(i)-(x-i)+f(x-i)) e[r].append((i,x-i)) q=min(q,r) for j in e[q]: print(j[0],j[1])