結果

問題 No.1658 Product / Sum
ユーザー KuonAyanoKuonAyano
提出日時 2021-08-27 22:14:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-11-21 02:54:31
合計ジャッジ時間 29,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 AC 30 ms
21,376 KB
testcase_02 AC 126 ms
17,572 KB
testcase_03 AC 29 ms
22,272 KB
testcase_04 TLE -
testcase_05 AC 82 ms
24,064 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,962 ms
18,340 KB
testcase_11 AC 302 ms
18,080 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,106 ms
18,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

V = [1]*N

for i in range (2, 50001):
    def is_ok(arg):
        return arg*i <= K*(arg+i+(N-2))

    def meguru_bisect(ng, ok):
        while (abs(ok - ng) > 1):
            mid = (ok + ng) // 2
            if is_ok(mid):
                ok = mid
            else:
                ng = mid
        return ok

    laid = meguru_bisect(10**50 + 1, 0)
    if laid*i == K*(laid+i+(N-2)):
        V[-1] = laid
        V[-2] = i
        print(*V)
        exit()
0