結果
問題 | No.1006 Share an Integer |
ユーザー | O2MT |
提出日時 | 2020-08-15 11:40:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 263 bytes |
コンパイル時間 | 90 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 59,200 KB |
最終ジャッジ日時 | 2024-10-10 17:29:15 |
合計ジャッジ時間 | 11,270 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 514 ms
51,088 KB |
testcase_01 | AC | 520 ms
44,320 KB |
testcase_02 | AC | 519 ms
44,188 KB |
testcase_03 | AC | 517 ms
44,200 KB |
testcase_04 | AC | 515 ms
44,068 KB |
testcase_05 | AC | 520 ms
44,324 KB |
testcase_06 | AC | 522 ms
43,808 KB |
testcase_07 | AC | 519 ms
44,324 KB |
testcase_08 | AC | 516 ms
44,064 KB |
testcase_09 | AC | 518 ms
43,688 KB |
testcase_10 | AC | 517 ms
43,804 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import numpy as np N = int(input()) l = np.zeros(N+1) num = 10**9 for i in range(1,N+1): l[::i] += 1 for j in range(1,N): num = min(num,abs((j-l[j])-(N-j-l[N-j]))) num = int(num) for k in range(1,N): if abs((k-l[k])-(N-k-l[N-k])) == num: print(k,N-k)