結果
問題 | No.1006 Share an Integer |
ユーザー | O2MT |
提出日時 | 2020-08-15 11:42:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 287 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 59,604 KB |
最終ジャッジ日時 | 2024-10-10 17:29:28 |
合計ジャッジ時間 | 10,629 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 491 ms
50,776 KB |
testcase_01 | AC | 489 ms
44,340 KB |
testcase_02 | AC | 487 ms
43,832 KB |
testcase_03 | AC | 482 ms
44,088 KB |
testcase_04 | AC | 495 ms
43,696 KB |
testcase_05 | AC | 507 ms
43,960 KB |
testcase_06 | AC | 508 ms
44,088 KB |
testcase_07 | AC | 505 ms
44,084 KB |
testcase_08 | AC | 493 ms
44,088 KB |
testcase_09 | AC | 495 ms
44,216 KB |
testcase_10 | AC | 489 ms
44,216 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//2+1): l[::i] += 1 l[::N-i] += 1 for j in range(1,N//2+1): 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)