結果

問題 No.1006 Share an Integer
ユーザー tatyamtatyam
提出日時 2020-03-07 00:26:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 91,540 KB
最終ジャッジ日時 2024-10-14 10:37:53
合計ジャッジ時間 5,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 44 ms
58,368 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 43 ms
59,264 KB
testcase_05 AC 51 ms
60,672 KB
testcase_06 AC 50 ms
60,416 KB
testcase_07 AC 48 ms
60,552 KB
testcase_08 AC 48 ms
60,544 KB
testcase_09 AC 48 ms
60,800 KB
testcase_10 AC 47 ms
60,672 KB
testcase_11 AC 209 ms
84,560 KB
testcase_12 AC 403 ms
90,140 KB
testcase_13 AC 415 ms
91,264 KB
testcase_14 AC 435 ms
91,540 KB
testcase_15 AC 363 ms
89,072 KB
testcase_16 AC 156 ms
81,944 KB
testcase_17 AC 210 ms
84,816 KB
testcase_18 AC 358 ms
89,088 KB
testcase_19 AC 338 ms
88,704 KB
testcase_20 AC 355 ms
89,452 KB
testcase_21 AC 434 ms
91,088 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
mn = 9e9
for i in range(1,x):
    mn = min(mn, abs(f[i]-f[x-i]))
for i in range(1,x):
    if mn == abs(f[i]-f[x-i]):
        print(i, x-i)
0