結果

問題 No.689 E869120 and Constructing Array 3
ユーザー rlangevinrlangevin
提出日時 2023-07-11 12:03:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 665 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,292 KB
最終ジャッジ日時 2024-09-13 02:52:00
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,020 KB
testcase_01 AC 38 ms
52,120 KB
testcase_02 AC 37 ms
52,816 KB
testcase_03 AC 44 ms
58,380 KB
testcase_04 AC 45 ms
59,040 KB
testcase_05 AC 48 ms
59,308 KB
testcase_06 AC 45 ms
59,064 KB
testcase_07 AC 43 ms
57,800 KB
testcase_08 AC 46 ms
60,720 KB
testcase_09 AC 45 ms
59,000 KB
testcase_10 AC 43 ms
59,160 KB
testcase_11 AC 47 ms
61,292 KB
testcase_12 AC 42 ms
59,432 KB
testcase_13 AC 39 ms
53,724 KB
testcase_14 AC 39 ms
52,404 KB
testcase_15 AC 38 ms
52,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
if K == 0:
    print(1)
    print(1)
    exit()

def solve(K):
    a = 0
    while a * (a - 1) //2 <= K:
        b = 0
        while a * (a - 1) //2 + a * b <= K and b <= K:
            c = 0
            while a * (a - 1) //2 + a * b + b * c <= K and c <= K:
                # print(a, b, c)
                if a * (a - 1) //2 + a * b + b * c == K and a + b + c <= 250:
                    return a, b, c
                # if a * (a - 1) //2 + a * b + b * c == 0:
                #     break
                c += 1
            b += 1
        a += 1
    return False

a, b, c = solve(K)
print(a + b + c)
ans = [1] * a + [2] * b + [3] * c
print(*ans)
0