結果

問題 No.1006 Share an Integer
ユーザー syunsukesyunsuke
提出日時 2020-03-19 17:43:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 333 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 77,644 KB
最終ジャッジ日時 2024-05-08 03:20:56
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 38 ms
57,856 KB
testcase_02 AC 42 ms
59,392 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 42 ms
60,160 KB
testcase_05 AC 48 ms
60,672 KB
testcase_06 AC 50 ms
61,056 KB
testcase_07 AC 49 ms
60,928 KB
testcase_08 AC 49 ms
60,800 KB
testcase_09 AC 51 ms
61,140 KB
testcase_10 AC 50 ms
61,184 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())
L=[i for i in range(X+1)]

for i in range(2,X+1):
    L[i]-=1
    for j in range(2,X+1):
        if i*j<=X:
            L[i*j]-=1
#print(L)
cnt=10**9
for i in range(1,X//2+1):
    if abs((L[i])-(L[X-i]))<cnt:
        cnt=abs((L[i])-(L[X-i]))

for i in range(1,X):
    if abs((L[i])-(L[X-i]))==cnt:
        print(i,X-i)
0