結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-09 12:34:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 175,396 KB
最終ジャッジ日時 2024-09-18 18:45:14
合計ジャッジ時間 4,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
74,156 KB
testcase_01 AC 71 ms
79,780 KB
testcase_02 AC 72 ms
79,160 KB
testcase_03 AC 91 ms
84,592 KB
testcase_04 AC 34 ms
53,288 KB
testcase_05 AC 33 ms
52,936 KB
testcase_06 AC 35 ms
53,232 KB
testcase_07 AC 38 ms
53,380 KB
testcase_08 AC 56 ms
68,300 KB
testcase_09 AC 79 ms
81,368 KB
testcase_10 AC 502 ms
175,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = []
for a in range(1, n-1):
    for b in range(a, n-1):
        c = n-a-b
        if c <= 0 or c < b:
            break
        ans.append((a, b, c))
for i in range(len(ans)):
    print(*ans[i])
0