結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-06-02 22:39:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 80,732 KB
最終ジャッジ日時 2024-09-22 02:10:17
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
72,832 KB
testcase_01 AC 77 ms
76,348 KB
testcase_02 AC 74 ms
76,160 KB
testcase_03 AC 93 ms
76,416 KB
testcase_04 AC 44 ms
52,352 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 60 ms
66,816 KB
testcase_09 AC 83 ms
76,288 KB
testcase_10 AC 371 ms
80,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3


def generate(n):
    for a in range(1, n // 3 + 1):
        bc = n - a
        for b in range(a, bc // 2 + 1):
            c = bc - b
            yield a, b, c


def main():
    for res in generate(int(input())):
        print(*res)


if __name__ == '__main__':
    main()
0