結果

問題 No.1006 Share an Integer
ユーザー syunsukesyunsuke
提出日時 2020-09-01 22:28:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 140,036 KB
最終ジャッジ日時 2024-11-20 19:28:09
合計ジャッジ時間 34,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,540 KB
testcase_01 AC 35 ms
129,412 KB
testcase_02 AC 42 ms
66,872 KB
testcase_03 WA -
testcase_04 AC 42 ms
68,732 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
68,320 KB
testcase_09 AC 48 ms
136,520 KB
testcase_10 AC 45 ms
69,064 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=[1 for i in range(N+1)]
for i in range(2,N+1):
    for j in range(1,N+1):
        if i*j<=N:
            L[i*j]+=1
#print(L)
SA=10**9
ans=[]
for i in range(1,(N+1)//2):
    A=i-L[i]
    B=(N-i)-L[(N-i)]
    if abs(A-B)<SA:
        SA=abs(A-B)
        ans=[[i,N-i]]
    elif abs(A-B)==SA:
        ans.append([i,N-i])
for i in ans:
    print(*i)
ANS=ans[::-1]
for i in ANS:
    print(i[1],i[0])
0