結果

問題 No.1006 Share an Integer
ユーザー pluto77pluto77
提出日時 2020-06-19 13:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 91,744 KB
最終ジャッジ日時 2024-07-03 13:19:27
合計ジャッジ時間 4,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,000 KB
testcase_01 AC 40 ms
52,436 KB
testcase_02 AC 45 ms
59,496 KB
testcase_03 AC 37 ms
52,200 KB
testcase_04 AC 42 ms
59,968 KB
testcase_05 AC 50 ms
62,432 KB
testcase_06 AC 46 ms
62,144 KB
testcase_07 AC 47 ms
62,108 KB
testcase_08 AC 46 ms
61,328 KB
testcase_09 AC 46 ms
61,232 KB
testcase_10 AC 48 ms
61,084 KB
testcase_11 AC 182 ms
84,496 KB
testcase_12 AC 320 ms
90,544 KB
testcase_13 AC 375 ms
91,368 KB
testcase_14 AC 362 ms
91,696 KB
testcase_15 AC 313 ms
89,160 KB
testcase_16 AC 145 ms
82,288 KB
testcase_17 AC 193 ms
85,100 KB
testcase_18 AC 282 ms
89,448 KB
testcase_19 AC 294 ms
88,640 KB
testcase_20 AC 319 ms
89,468 KB
testcase_21 AC 351 ms
91,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1006
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
res=10**18
for i in range(1,x):
 if res>abs(f[i]-f[x-i]):
  res=abs(f[i]-f[x-i])
for i in range(1,x):
 if res==abs(f[i]-f[x-i]):
  print(i,x-i)
0