結果

問題 No.689 E869120 and Constructing Array 3
ユーザー i_takui_taku
提出日時 2023-09-29 12:02:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 370 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-07-22 06:24:18
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 47 ms
57,728 KB
testcase_03 AC 46 ms
58,880 KB
testcase_04 AC 46 ms
59,264 KB
testcase_05 AC 47 ms
59,648 KB
testcase_06 AC 49 ms
59,648 KB
testcase_07 AC 49 ms
59,520 KB
testcase_08 AC 48 ms
60,032 KB
testcase_09 AC 51 ms
60,160 KB
testcase_10 AC 50 ms
59,520 KB
testcase_11 AC 50 ms
59,648 KB
testcase_12 AC 51 ms
59,648 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 40 ms
51,456 KB
testcase_15 AC 40 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
for N in range(1, 251):
    for cnt_1 in range(N + 1):
        for cnt_2 in range(N + 1 - cnt_1):
            cnt_3 = N - (cnt_1 + cnt_2)
            if cnt_1 * (cnt_1 - 1) // 2 + cnt_1 * cnt_2 + cnt_2 * cnt_3 == K:
                ans = [1] * cnt_1 + [2] * cnt_2 + [3] * cnt_3
                print(N)
                print(*ans)
                exit()
0