結果

問題 No.1006 Share an Integer
ユーザー syunsukesyunsuke
提出日時 2020-09-01 22:34:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 346 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 139,672 KB
最終ジャッジ日時 2024-11-20 19:40:25
合計ジャッジ時間 34,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,244 KB
testcase_01 AC 41 ms
65,688 KB
testcase_02 AC 47 ms
67,572 KB
testcase_03 AC 38 ms
130,148 KB
testcase_04 AC 51 ms
67,244 KB
testcase_05 AC 52 ms
139,672 KB
testcase_06 AC 52 ms
68,508 KB
testcase_07 AC 55 ms
138,868 KB
testcase_08 AC 54 ms
68,072 KB
testcase_09 AC 56 ms
137,924 KB
testcase_10 AC 54 ms
69,340 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=[i 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):
    if abs(L[i]-L[N-i])<SA:
        SA=abs(L[i]-L[N-i])
        ans=[[i,N-i]]
    elif abs(L[i]-L[N-i])==SA:
        ans.append([i,N-i])
for i in ans:
    print(*i)
0