結果

問題 No.1006 Share an Integer
ユーザー tatyamtatyam
提出日時 2020-03-06 23:30:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 91,324 KB
最終ジャッジ日時 2024-10-14 09:55:17
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,544 KB
testcase_02 AC 42 ms
60,456 KB
testcase_03 AC 36 ms
52,924 KB
testcase_04 AC 43 ms
58,500 KB
testcase_05 AC 47 ms
61,508 KB
testcase_06 AC 47 ms
61,920 KB
testcase_07 AC 47 ms
61,572 KB
testcase_08 AC 47 ms
61,248 KB
testcase_09 AC 48 ms
62,028 KB
testcase_10 AC 46 ms
61,856 KB
testcase_11 AC 173 ms
84,544 KB
testcase_12 AC 269 ms
90,420 KB
testcase_13 AC 299 ms
91,264 KB
testcase_14 AC 276 ms
91,324 KB
testcase_15 AC 253 ms
88,968 KB
testcase_16 AC 141 ms
82,612 KB
testcase_17 AC 179 ms
84,740 KB
testcase_18 AC 242 ms
89,236 KB
testcase_19 AC 243 ms
88,804 KB
testcase_20 AC 268 ms
89,712 KB
testcase_21 AC 297 ms
91,220 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 = 0x1fffffff
for i in range(1,x):
    if mn > abs(f[i] - f[x-i]):
        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