結果

問題 No.1006 Share an Integer
ユーザー lloyzlloyz
提出日時 2022-05-28 14:19:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 77,404 KB
最終ジャッジ日時 2024-09-20 21:51:40
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,240 KB
testcase_01 AC 42 ms
53,352 KB
testcase_02 AC 47 ms
60,456 KB
testcase_03 AC 38 ms
53,436 KB
testcase_04 AC 47 ms
61,240 KB
testcase_05 AC 53 ms
62,420 KB
testcase_06 AC 51 ms
62,712 KB
testcase_07 AC 51 ms
61,844 KB
testcase_08 AC 53 ms
62,660 KB
testcase_09 AC 56 ms
62,020 KB
testcase_10 AC 53 ms
61,752 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())

C = [0 for _ in range(x + 1)]
for i in range(1, x + 1):
    f = 1
    while f * f <= i:
        if i % f == 0:
            C[i] += 1
            if f * f != i:
                C[i] += 1
        f += 1

D = [[] for _ in range(x)]
for a in range(1, x):
    b = x - a
    num = abs(a - C[a] - b + C[b])
    D[num].append((a, b))

for i in range(x):
    if len(D[i]) > 0:
        for a, b in D[i]:
            print(a, b)
        break
0