結果
問題 | No.1006 Share an Integer |
ユーザー | ogi_welcome |
提出日時 | 2020-03-06 23:27:43 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 483 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,040 KB |
実行使用メモリ | 132,424 KB |
最終ジャッジ日時 | 2024-10-14 09:54:46 |
合計ジャッジ時間 | 5,573 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 92 ms
111,100 KB |
testcase_01 | AC | 91 ms
104,048 KB |
testcase_02 | AC | 101 ms
104,900 KB |
testcase_03 | AC | 92 ms
104,388 KB |
testcase_04 | AC | 102 ms
105,056 KB |
testcase_05 | AC | 106 ms
105,084 KB |
testcase_06 | AC | 105 ms
105,028 KB |
testcase_07 | AC | 108 ms
105,724 KB |
testcase_08 | AC | 107 ms
104,888 KB |
testcase_09 | AC | 108 ms
105,272 KB |
testcase_10 | AC | 105 ms
105,148 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
def f(n): l=[] for i in range(2,int(n**0.5)+1): if n%i==0: cnt=0 while n%i==0: cnt+=1 n//=i l.append((i,cnt)) ans=1 if n>1: 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,int(x**0.5)-50),min(x,int(x*0.5)+50)): 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])