結果

問題 No.1006 Share an Integer
ユーザー H20H20
提出日時 2021-08-19 17:27:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 91,320 KB
最終ジャッジ日時 2024-10-12 18:16:58
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 40 ms
52,552 KB
testcase_02 AC 42 ms
59,496 KB
testcase_03 WA -
testcase_04 AC 43 ms
60,140 KB
testcase_05 AC 47 ms
61,560 KB
testcase_06 AC 47 ms
61,636 KB
testcase_07 AC 51 ms
61,104 KB
testcase_08 AC 48 ms
61,148 KB
testcase_09 AC 48 ms
60,928 KB
testcase_10 AC 48 ms
61,504 KB
testcase_11 AC 177 ms
84,308 KB
testcase_12 AC 379 ms
90,680 KB
testcase_13 AC 394 ms
91,204 KB
testcase_14 AC 402 ms
91,204 KB
testcase_15 AC 319 ms
89,100 KB
testcase_16 AC 142 ms
81,848 KB
testcase_17 AC 201 ms
84,932 KB
testcase_18 AC 345 ms
89,000 KB
testcase_19 AC 318 ms
89,100 KB
testcase_20 AC 367 ms
89,216 KB
testcase_21 AC 409 ms
91,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [0]*(N+1)
for i in range(1,N+1):
    for j in range(i,N+1,i):
        L[j]+=1
f = 10**10
for i in range(N+1):
    a = i
    b = N-a
    f = min(f,abs(a-L[a]-b+L[b]))
for i in range(N+1):
    a = i
    b = N-a
    if abs(a-L[a]-b+L[b])==f:
        print(a,N-a)
0