結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー yumechiyumechi
提出日時 2017-03-19 09:32:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 1,032 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 266,852 KB
最終ジャッジ日時 2024-07-18 10:06:27
合計ジャッジ時間 7,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
76,808 KB
testcase_01 AC 115 ms
80,640 KB
testcase_02 AC 97 ms
79,932 KB
testcase_03 AC 173 ms
86,884 KB
testcase_04 AC 34 ms
51,992 KB
testcase_05 AC 32 ms
52,336 KB
testcase_06 AC 32 ms
53,096 KB
testcase_07 AC 45 ms
62,652 KB
testcase_08 AC 59 ms
76,260 KB
testcase_09 AC 129 ms
82,092 KB
testcase_10 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    ans = set()
    for i in range(1, n):
        for j in range(1, n-i):
            ans.add(tuple(sorted([i, j, n-i-j])))
    for elem in sorted(list(ans)):
        print(" ".join(map(str, elem)))

if __name__=="__main__":
    solve()
0