結果

問題 No.1006 Share an Integer
ユーザー ogi_welcomeogi_welcome
提出日時 2020-03-06 23:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 91,444 KB
最終ジャッジ日時 2024-10-14 10:01:20
合計ジャッジ時間 3,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,240 KB
testcase_01 AC 36 ms
52,720 KB
testcase_02 AC 42 ms
59,064 KB
testcase_03 AC 37 ms
52,976 KB
testcase_04 AC 42 ms
59,184 KB
testcase_05 AC 44 ms
61,640 KB
testcase_06 AC 45 ms
60,964 KB
testcase_07 AC 45 ms
61,088 KB
testcase_08 AC 46 ms
60,936 KB
testcase_09 AC 47 ms
62,264 KB
testcase_10 AC 47 ms
61,220 KB
testcase_11 AC 173 ms
84,440 KB
testcase_12 AC 274 ms
90,388 KB
testcase_13 AC 293 ms
91,444 KB
testcase_14 AC 288 ms
91,204 KB
testcase_15 AC 248 ms
89,008 KB
testcase_16 AC 133 ms
82,432 KB
testcase_17 AC 174 ms
84,664 KB
testcase_18 AC 236 ms
89,144 KB
testcase_19 AC 236 ms
88,644 KB
testcase_20 AC 253 ms
90,016 KB
testcase_21 AC 303 ms
91,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
f = [i for i in range(x)]
for i in range(1,x):
    for j in range(i,x,i):
        f[j] -= 1
ans = 10**18
for i in range(1,x):
    if ans > abs(f[i] - f[x-i]):
        ans = abs(f[i] - f[x-i])
for i in range(1,x):
    if ans == abs(f[i] - f[x-i]):
        print(i, x - i)
0