結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー convexineqconvexineq
提出日時 2021-02-11 00:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 81,604 KB
最終ジャッジ日時 2024-07-08 12:18:55
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
73,836 KB
testcase_01 AC 74 ms
76,236 KB
testcase_02 AC 65 ms
76,560 KB
testcase_03 AC 82 ms
76,428 KB
testcase_04 AC 32 ms
51,720 KB
testcase_05 AC 31 ms
52,364 KB
testcase_06 AC 31 ms
52,612 KB
testcase_07 AC 33 ms
53,428 KB
testcase_08 AC 54 ms
70,976 KB
testcase_09 AC 79 ms
76,480 KB
testcase_10 AC 323 ms
81,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
def dfs(i):
    if i==2:
        v = n-lst[0]-lst[1]
        if v >= lst[1]:
            lst[2] = v
            print(*lst)
            lst[2] = 1
        return
    for j in range(lst[i-1],n-lst[i-1]):
        lst[i] = j
        dfs(i+1)
    lst[i] = 1
lst = [1,1,1]
dfs(0)
0