結果
問題 | No.1006 Share an Integer |
ユーザー | Ohnuma |
提出日時 | 2020-04-05 23:25:04 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 480 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 109,668 KB |
最終ジャッジ日時 | 2024-07-04 15:15:39 |
合計ジャッジ時間 | 4,383 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
57,344 KB |
testcase_01 | AC | 40 ms
52,096 KB |
testcase_02 | AC | 48 ms
61,056 KB |
testcase_03 | RE | - |
testcase_04 | AC | 50 ms
62,080 KB |
testcase_05 | AC | 61 ms
67,968 KB |
testcase_06 | AC | 62 ms
68,224 KB |
testcase_07 | AC | 63 ms
68,608 KB |
testcase_08 | AC | 61 ms
67,968 KB |
testcase_09 | AC | 63 ms
68,736 KB |
testcase_10 | AC | 62 ms
68,352 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 divisor(x): tank = [] for i in range(1, int(x**0.5)+1): if x%i==0: tank.append(i) if i!=x//i: tank.append(x//i) tank.sort() return tank x = int(input()) ans = [] for a in range(1, x-1): b = x-a fa = a - len(divisor(a)) fb = b - len(divisor(b)) ans.append((abs(fa-fb), a, b)) ans.sort(key=lambda x:x[0]) mn = ans[0][0] for n,a,b in ans: if n!=mn: break else: print(a, b)