結果

問題 No.1006 Share an Integer
ユーザー yakeshibayakeshiba
提出日時 2020-10-31 22:01:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 274,896 KB
最終ジャッジ日時 2024-07-22 05:26:09
合計ジャッジ時間 7,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 43 ms
59,008 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 43 ms
58,752 KB
testcase_05 AC 45 ms
59,264 KB
testcase_06 WA -
testcase_07 AC 45 ms
59,392 KB
testcase_08 AC 45 ms
59,264 KB
testcase_09 WA -
testcase_10 AC 46 ms
59,520 KB
testcase_11 AC 335 ms
170,380 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 816 ms
274,316 KB
testcase_15 AC 657 ms
247,416 KB
testcase_16 AC 265 ms
145,852 KB
testcase_17 AC 371 ms
170,072 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 617 ms
245,932 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())

n_div = [0]*(X+1)

for i in range(1,X//2+1):
    for j in range(i, X+1, i):
        n_div[j] += 1
    
d = {}
for a in range(1, X//2+1):
    b = X-a
    f = abs((a-n_div[a])-(b-n_div[b]))
    if f not in d:
        d[f] = [[a, b]]
    else:
        d[f].append([a, b])

ans = sorted(d[min(d.keys())])
for v in ans:
    a, b = v
    print(a, b)
    
for v in ans[::-1]:
    a, b = v
    if a != b:
        print(b, a)
0