結果

問題 No.689 E869120 and Constructing Array 3
ユーザー daku9640daku9640
提出日時 2018-05-19 01:05:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 384 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-28 14:17:06
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 60 ms
10,624 KB
testcase_04 AC 116 ms
10,752 KB
testcase_05 AC 191 ms
10,752 KB
testcase_06 AC 261 ms
10,752 KB
testcase_07 AC 297 ms
10,496 KB
testcase_08 AC 351 ms
10,624 KB
testcase_09 AC 376 ms
10,752 KB
testcase_10 AC 352 ms
10,752 KB
testcase_11 AC 366 ms
10,624 KB
testcase_12 AC 384 ms
10,624 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    k = int(input())
    for a in range(251):
        for b in range(251 - a):
            for c in range(251 - a - b):
                if (a + b) * (a + b - 1) // 2 - b * (b - 1) // 2 + c == k:
                    return [1] * a + [2] * b + [7] * c + [24]
    return [0]
v = solve()
print(len(v))
print(*v)
0